Posts under Developer Tools & Services topic

Post

Replies

Boosts

Views

Activity

Xcode crashes on every launch and is completely unusable.
I just upgraded MacOS to Tahoe 26.6.1, and upgraded XCode too. Then Xcode crashes on every launch and is completely unusable. Translated Report (Full Report Below) ------------------------------------- Process: Xcode [1718] Path: /Applications/Xcode.app/Contents/MacOS/Xcode Identifier: com.apple.dt.Xcode Version: 26.6 (24959) Build Info: IDEApplication-24959000000000000~2 (17F113) Code Type: ARM-64 (Native) Role: Background Parent Process: launchd [1] Coalition: com.apple.dt.Xcode [917] User ID: 502 Date/Time: 2026-08-13 11:26:33.1318 +0800 Launch Time: 2026-08-13 11:26:33.0308 +0800 Hardware Model: Mac16,8 OS Version: macOS 26.6.1 (25G76) Release Type: User Crash Reporter Key: ED18B1CA-EA9C-0657-0CF1-1EFA8C60919E Incident Identifier: 8350CBBA-0B41-4A77-B262-CD0662709FB1 Time Awake Since Boot: 47 seconds System Integrity Protection: disabled Triggered by Thread: 0, Dispatch Queue: com.apple.main-thread Exception Type: EXC_CRASH (SIGABRT) Exception Codes: 0x0000000000000000, 0x0000000000000000 Termination Reason: Namespace SIGNAL, Code 6, Abort trap: 6 Terminating Process: Xcode [1718] Thread 0 Crashed:: Dispatch queue: com.apple.main-thread 0 libsystem_kernel.dylib 0x1843745e8 __pthread_kill + 8 1 libsystem_pthread.dylib 0x1843af8d8 pthread_kill + 296 2 libsystem_c.dylib 0x1842b5978 abort + 148 3 libsystem_c.dylib 0x1842b5a94 abort_report_np + 84 4 Xcode 0x102624ed0 main.cold.1 + 36 5 Xcode 0x102624e1c main + 340 6 dyld 0x183fe44e4 start + 6992 Thread 0 crashed with ARM Thread State (64-bit): x0: 0x0000000000000000 x1: 0x0000000000000000 x2: 0x0000000000000000 x3: 0x0000000000000000 x4: 0x0000000000000073 x5: 0x000000000000002e x6: 0x000000016d7db278 x7: 0x0000000000000000 x8: 0x61cbe9e2533f85e8 x9: 0x61cbe9e3a3e16468 x10: 0x0000000000000002 x11: 0x00000000fffffffd x12: 0x0000000000000000 x13: 0x0000000000000000 x14: 0x0000000000000000 x15: 0x0000000000000000 x16: 0x0000000000000148 x17: 0x00000001f242f400 x18: 0x0000000000000000 x19: 0x0000000000000006 x20: 0x0000000000000103 x21: 0x00000001f0dee260 x22: 0x0000000102d5cbe0 x23: 0x00000001f0df5908 x24: 0x0000000000000001 x25: 0x000000016d7db6d0 x26: 0x00000001f0defa70 x27: 0x0000000000000000 x28: 0x0000000000000000 fp: 0x000000016d7db3f0 lr: 0x00000001843af8d8 sp: 0x000000016d7db3d0 pc: 0x00000001843745e8 cpsr: 0x40000000 far: 0x0000000000000000 esr: 0x56000080 (Syscall) Binary Images: 0x102624000 - 0x102627fff com.apple.dt.Xcode (26.6) <8025d4bb-71ea-3f57-bade-2e3c847b6cf3> /Applications/Xcode.app/Contents/MacOS/Xcode 0x18436b000 - 0x1843a82e7 libsystem_kernel.dylib (*) <7cfb3a10-adb2-32c4-99b5-922a111b3224> /usr/lib/system/libsystem_kernel.dylib 0x1843a9000 - 0x1843b5b3b libsystem_pthread.dylib (*) <12342372-0084-37a5-9ea6-2e4dc940c685> /usr/lib/system/libsystem_pthread.dylib 0x18423d000 - 0x1842be1e7 libsystem_c.dylib (*) <fdc4e366-5c14-3a1e-bc35-d933d28cdcf3> /usr/lib/system/libsystem_c.dylib 0x183fc4000 - 0x1840774ff dyld (*) <df42dd9d-ad11-33a7-8849-9ad5df30a274> /usr/lib/dyld 0x0 - 0xffffffffffffffff ??? (*) <00000000-0000-0000-0000-000000000000> ???
3
0
431
17h
Xcode 26.4: IBOutlets/IBActions gutter circles missing — cannot connect storyboard to code (works in 26.3)
I’m seeing a regression in Xcode 26.4 where Interface Builder will not allow connecting IBOutlets or IBActions. Symptoms: The usual gutter circle/dot does not appear next to IBOutlet / IBAction in the code editor Because of this, I cannot: drag from storyboard → code drag from code → storyboard The class is valid and already connected to the storyboard (existing outlets work) Assistant Editor opens the correct view controller file Important: The exact same project, unchanged, works perfectly in Xcode 26.3. I can create and connect outlets/actions normally there. ⸻ Environment Xcode: 26.4 macOS: 26.4 Mac Mini M4 Pro 64G Ram Project: Objective-C UIKit app using Storyboards This is a long-running, ObjC, project (not newly created) ⸻ What I’ve already tried To rule out the usual suspects: Verified View Controller Custom Class is correctly set in Identity Inspector Verified files are in the correct Target Membership Verified outlets are declared correctly in the .h file: @property (weak, nonatomic) IBOutlet UILabel *exampleLabel; Opened correct file manually (not relying on Automatic Assistant) Tried both: storyboard → code drag code → storyboard drag Tried using Connections Inspector Clean Build Folder Deleted entire DerivedData Restarted Xcode Updated macOS to 26.4 Ran: sudo xcodebuild -runFirstLaunch Confirmed required platform components installed Reopened project fresh ⸻ Observations In Xcode 26.4 the outlet “connection circles” are completely missing In Xcode 26.3 they appear immediately for the same code Existing connections still function at runtime — this is purely an Interface Builder issue ⸻ Question The gutter circles appearance has always been flaky in Xcode over the 13+ years I've been using it but now with 26.4 they have completely disappeared. Has anyone else seen this in Xcode 26.4, or found a workaround? At this point it looks like a regression in Interface Builder, but I haven’t found any mention of it yet.
35
13
4.9k
17h
Is it a known issue that Xcode static analyzer hallucinates past results?
[Q] Is it a known issue that the Xcode static analyzer hallucinates past results? Basically, the issue I've been observing for a few releases of Xcode now (including 27b) is that if you run a static analysis, fixes the reported issues and re-run a static analysis, you will get exactly the same results as with the first run. It's as if Xcode did not take into account the fixes. If you clean the builds (cmd + shift + K), and run the analysis again, this time, you will get up-to-date results.
0
0
22
17h
iPad 9th Generation 5GHz Network Issue
Greetings! We are experiencing an issue with Apple iPad 9th generation devices. A stationary iPad may lose connection with a 5 GHz Wi-Fi network. We ran an investigation and found that these iPads are getting stuck on access points when losing connectivity. Here is what we tested: We took 3 devices: iPad 9th generation running iPadOS 17.4.1 iPad 9th generation running iPadOS 26.5.2 iPad 11th generation running iPadOS 26.5.2 We walked around our space with Wireless Diagnostics enabled on the iPads. After some time, we compared the gathered logs. The iPad 9th generation, working on different iPadOS, when connected to a 5 GHz network, gets stuck on one AP. The 2.4 GHz network, on the other hand, works as intended regardless of the authentication method. The iPad 11th generation does not have this issue. Please confirm if this is a known problem. We would be glad to know if there are any fixes available. Attached you will find obfuscated wireless diagnostic logs. We can provide more detailed logs if needed. iPad_wireless_logs.txt
0
0
19
17h
Getting Gemini 3.5 or 3.6 Flash to work with Xcode 27 Beta
I've been trying for months to get Gemini 3.5 Flash to work with Xcode 27 Beta (1-3) agentic coding but have failed. Xcode currently uses Gemini CLI v0.42.0 from last year, so it can't call Gemini 3.5 Flash even though all that needs to change is a few characters in the API call. Gemini users are currently forced to choose between 3.1 Pro and 3.1 Flash Preview--both weren't the best choices two months ago, but with the release of 3.6 Flash which is better at coding that 3.1 Pro and miles cheaper, these choices are now unsuitable for any serious workload. I live in Hong Kong, where OpenAI and Anthropic services aren't offered, so Google is the only (native) AI provider for Xcode agentic coding. The cost issue from funneling all the work into 3.1 Pro is terrible especially with some agent bugs that have yet to be ironed out. Given Apple's close partnership with Google on AI, I'm genuinely surprised that after 4 Betas we're still using a Gemini CLI from 2025 that forces users to choose between two very unappealing models. Xcode is basically forcing Google users to switch to OpenAI/Anthropic. Questions: I'd like to know if this will be fixed soon and whether Google users should expect slower updates (i.e. be forced to use older models). Does anyone know of any workarounds?
4
0
361
20h
Xcode 27 Beta 4 regression: "Multiple commands produce" error when a SwiftPM binary xcframework product is linked from both an app target and an embedded framework target
In Xcode 27 Beta 4 (27A5228h), building a project that has a SwiftPM binary target (xcframework) linked directly from both an app target AND a framework target that is embedded in that app fails with "Multiple commands produce" errors. The same project and pbxproj builds successfully in Xcode 27 Beta 3 (27A5218g), so this is a regression introduced in Beta 4. Steps to Reproduce Create a new iOS App project. Add a Framework target (e.g. "SampleCommon") and embed it into the app. Add a SwiftPM dependency for a package that vends a binary xcframework product. Confirmed with airbnb/lottie-spm 4.6.1 (https://github.com/airbnb/lottie-spm). In "Frameworks, Libraries, and Embedded Content" of the app target, add the SwiftPM product (Lottie) with "Embed & Sign". In "Frameworks and Libraries" of the framework target, add the same SwiftPM product (Lottie). Build the app scheme for iOS Simulator. Expected result Build succeeds. The xcframework is embedded exactly once into the .app bundle. This is the behavior in Xcode 27 Beta 3 and Xcode 26. Actual result Build fails with: error: Unexpected duplicate tasks error: Multiple commands produce '.../<App>.app/Frameworks/Lottie.framework/Lottie' error: Multiple commands produce '.../<App>.app/Frameworks/Lottie.framework' Two Copy tasks are emitted for the same output path in the app target: Copy from Build/Products/Debug-iphonesimulator/PackageFrameworks/Lottie.framework Copy from SourcePackages/artifacts/lottie-spm/Lottie/Lottie.xcframework/ios-arm64_x86_64-simulator/Lottie.framework Additionally, an auto-generated target named "Lottiedynamic-product" emits duplicate MkDir / ProcessInfoPlistFile tasks for PackageFrameworks/Lottie.framework, which suggests the packaging path for binary xcframework products has been duplicated in Beta 4. Regression Xcode 27 Beta 3 (27A5218g): builds successfully Xcode 27 Beta 4 (27A5228h): fails with the above errors Xcode 26.x: builds successfully Minimal reproduction The issue reproduces on a 2-target Xcode project (app + framework) with airbnb/lottie-spm added and linked from both targetstory captures the smallest triggering diff: pattern1: app links Lottie only -> BUILD SUCCEEDED pattern2: framework links Lottie only -> BUILD SUCCEEDED pattern3: both app and framework link Lottie -> BUILD FAILED (only on Beta 4) Only the framework target's packageProductDependencies and Frameworks build phase entries differ between the succeeding and failing states. Workaround Link the SwiftPM binary product from only one target (either the app or the framework, not both). If only the framework tarl gets the framework transitively at runtime. Impact Any project that uses a SwiftPM binary xcframework and organizes code across multiple linked targets (a very common pattern for larger apps) is blocked from adopting Xcode 27 Beta 4. Environment Xcode 27.0 Beta 4 (27A5228h) macOS 26.5.2 Package: airbnb/lottie-spm 4.6.1 Destination: iOS Simulator (iPhone 17, latest)
8
4
410
1d
App Store submission blocked after Xcode 27 beta / macOS update
I am experiencing an App Store submission issue after updating my Mac development environment. A build of my iOS app can be uploaded and appears in App Store Connect/TestFlight, but when I try to use the build for App Review, it is rejected because it was built using a beta version of Xcode. I am currently using Xcode 27 beta because of the macOS environment installed on this Mac. I have been advised that I may need to return the Mac to a stable macOS/Xcode environment and rebuild the app. This is particularly concerning because the app and its development data already exist on this Mac, and reverting the development environment may require a full backup and OS reinstallation. I would like to know: What is the officially supported procedure to return to a stable macOS and Xcode environment without losing development data? Which stable Xcode version should be used to rebuild the app for App Store submission? Is there any supported way to submit the existing build, or must it be rebuilt completely with a non-beta Xcode? I would also like to know whether other developers using the current beta environment are experiencing the same App Store Connect submission restriction. I would also like clarification regarding responsibility and remediation in this situation. If a development environment provided through Apple’s software update or beta distribution results in an existing application becoming unable to be submitted to App Store Connect, what responsibility does Apple assume for the resulting disruption to developers? In particular, if resolving the issue requires backing up development data, reinstalling macOS, reinstalling Xcode, and rebuilding the application, does Apple provide an official recovery procedure or support for developers affected by this situation? I believe this is important not only for my application, but also for other developers who may encounter the same issue. I would appreciate an official clarification from Apple regarding both the technical solution and Apple’s policy for developers affected by this problem. Thank you.
2
0
102
1d
Individual enrollment blocked — photo ID upload fails for both passport and government ID
I'm attempting to enroll in the Apple Developer Program as an Individual. During identity verification, I'm asked to upload a photo of a government-issued ID or passport, and both document types are failing with distinct errors — not a generic failure, but two specific, different rejection messages depending on which document I try: For my government-issued national ID card: "An error occurred, the photo of your ID didn't upload. Please restart enrollment." This message repeats every time, regardless of how many times I restart and retry. For my passport: "Upload error, your identity could not be verified because the image you submitted is unclear or obscured. Please try again." Both documents were photographed carefully following Apple's own on-screen guidance for lighting and framing, and the resulting images are genuinely clear, sharp, and fully legible — not blurry, glared, cropped, or obscured in any way. I have retried multiple times with fresh photos for both documents, with the same two errors recurring consistently each time. Details: Enrollment type: Individual Country/Region: Pakistan Devices tried: [add your iPhone model + iOS version, and/or Mac model + macOS version here] Browser(s) tried: [add if you tried this on the web as well as the Apple Developer app] I have not been able to find a way to reach Developer Support directly to report this — the standard contact paths have not been accessible for this issue. Could someone confirm: Is there a known issue with photo ID upload for Individual enrollment currently, specifically affecting Pakistan or similar regions? Is there an alternative verification method or manual upload path available for cases where the standard upload consistently fails despite clear, well-lit images? Can this be escalated to the identity verification team? Any guidance would be genuinely appreciated — this is currently blocking enrollment entirely.
2
1
175
1d
Apple Developer Program team invitation keeps redirecting to the sign-in page
We are experiencing an issue when inviting a user to join our Apple Developer Program team through App Store Connect Users and Access. The purpose of adding this user is to include them as an internal TestFlight tester after the invitation is accepted. The invited user received the Apple Developer invitation email and clicked the "Accept invitation" link. The invitation link opens the following page: https://appstoreconnect.apple.com/activation_ds?key=... The page displays "Sign in to accept your invitation" and asks the user to sign in with an Apple Account. After the user signs in successfully, the page redirects back to the same sign-in page and asks the user to sign in again. The invitation cannot be accepted, and the user cannot join the Apple Developer Program team. Steps to reproduce: Go to Users and Access in App Store Connect. Add a new user and send an invitation to join the Apple Developer Program team. The invited user receives the Apple Developer invitation email. The invited user clicks the "Accept invitation" link. The page opens appstoreconnect.apple.com/activation_ds. The user signs in with an Apple Account. After signing in, the page redirects back to the same sign-in page. Repeating the sign-in process results in the same redirect loop. Expected result: The invitation should be accepted after the user signs in, and the user should be added to the Apple Developer Program team. Actual result: The page keeps redirecting back to the sign-in page, and the user cannot accept the invitation. Troubleshooting already tried: Safari and Chrome Private browsing mode Clearing browser cookies Signing out of Apple ID before opening the invitation link again Opening the link directly in the browser instead of an email app embedded browser The issue still occurs.
4
3
624
1d
Identity verification failed for developer account enrollment — no resolution after months of support emails
Hi all, I'm hoping someone from the community or Apple can point me in the right direction, as I've hit a wall I can't get past through normal support. My situation: I tried to enrol in the Apple Developer Program as an Individual. Enrollment failed at the identity verification stage in the Apple Developer app, and the app no longer gives me any option to retry. I've since received the same reply twice from Developer Support: that they "can't verify my identity with the Apple Developer app or provide further assistance with the Apple Account for Apple developer programs." I then obtained a D-U-N-S number for my registered business and attempted Organization enrollment instead — but I'm blocked there as well. What I've already done on my side: Confirmed my Apple Account name matches my government-issued photo ID exactly Corrected my account address and payment details Enabled two-factor authentication and set a trusted phone number Opened multiple support cases but I don't receive any response. My question: Since both Individual and Organization enrollment are blocked, is this a flag on my Apple Account itself rather than on the enrollment type? If so, what is the correct route to have that reviewed? Is there a specific team or a phone escalation path that can look at an account-level verification block? Email support has not been able to help. I have a finished app ready to submit and I'm simply trying to find the right door. Any guidance from those who've resolved a similar verification issue would be hugely appreciated. Thank you.
0
0
33
1d
Is there a real Swift Package Manager Registry in existence?
I would like to be able to use an SPM registry to access the various open source packages that my app uses. I want to do this so that I can use JFrog's Artifactory as a registry proxy, and manage my app's dependencies through it. I've found an announcement in 2019 that GitHub Package Registry was going to support Swift packages, but I have found no newer info. All the other things I've found which call themselves Swift package registries do not conform to SE-0292. Are there any public SPM registries? Will there be any in the near future?
3
0
1.5k
1d
Account suspended due to automated 14-day timeout during address verification
Hello, I am facing a critical issue with my Apple Developer Account verification process where an automated timer suspended my account despite submitting all requested documents on day one. Timeline & Details: I received a request from Apple to upload address verification documents with a 14-day deadline. I uploaded all requested documents on the very first day. While waiting for the review process to be completed on Apple's end, the 14-day window expired. Consequently, the system automatically suspended my account, disabling certificate creation and blocking development/distribution. I have open support tickets, but have not received a response yet. Case ID: 102944887663 Since this is an automated timeout caused by review delay, could someone from the Apple team please help escalate this Case ID to the Enrollment / Account Verification team? Thank you very much for your help!
6
3
606
1d
Enrollment stuck in "being processed" 14+ days after document submission (ID: 68UYPM637K)
Hello everyone, I'm hoping someone from the Apple Developer support team or another developer who's been through this can help. Enrollment ID: 68UYPM637K Organization: CHARRY - INDUSTRIA E COMERCIO DE CONFECCOES LTDA Timeline so far: This enrollment was submitted by our company's owner/founder, who has the legal authority to bind the organization to agreements. We received a request for identity verification documents (government-issued photo ID, Articles of Association, and CNPJ card for the organization). We submitted all requested documents through the secure upload portal on July 29, 2026 (14 days ago). Checking developer.apple.com/account directly, the enrollment still shows as "being processed," with no further update or request since then. At this point we've submitted everything requested and haven't received any update in 14 days. This is delaying a planned app launch for our company. Has anyone else experienced a delay like this after submitting documents? Is there anything else we should try, or can someone from Apple please take a look at enrollment 68UYPM637K? Thank you in advance for any guidance.
5
2
421
1d
Issues updating W-9 and bank
After my account was converted to an organizational account, I tried to submit a new W-9, but I get an error: "The Type of Beneficial Owner does not match the individual or company status you previously provided." I had selected "Individual/Sole proprietor", based on my understanding that this is what should be selected on the W-9 for a single-member LLC. My initial guess as to what's causing the error, is my single-member LLC may have been miscategorized in the migration to an organization account so the intended option doesn't work. As per the official W-9 instructions, a single-member LLC should be categorized as an "Individual/sole proprietor or single-member LLC" on the form for tax purposes, but when I select "Individual/Sole Proprietor" on the "Type of Beneficiary Owner" dropdown on the App Store Connect front-end form for the W-9, which I assume corresponds with the aforementioned option on the true W-9 form that includes "single-member LLC", I get the aforementioned error. I was alternatively informed by Developer Support that the above error may be occurring because I haven't signed the latest Apple Program License Agreement, which I haven't been able to access, which they claimed is because I hadn't provided banking information for my account. So I added my business bank account but a week later the top of the Business section still says "Your banking updates are processing, and you should see the changes in 24 hours. You won't be able to make any additional updates until then." I contacted Apple Developer Support about all of the above and am still waiting for a response. While I wait, I'd like to ask here whether anyone has any ideas as to why the W-9 error is occuring or how long banking changes actually take to process, in case either of these is something I can resolve in the meantime.
10
0
535
1d
Enrollment stuck
Hi. I was trying to enroll apple developer program, but after uploading my ID I was told to contact apple developer support. I reached out the support and they told me my ID is not sufficient for some reason and I have to re-upload it. When i tried to do so it wouldn't allow me and telling me to contact apple support. I tried to arrange a call but after 1 day waiting on one is picking up. So basically I'm stuck in a loop that I have no idea what to do. The case ID: 20000134414907. If any apple staff seeing this please help. Thank you!
0
0
33
1d
Individual Enrollment Pending Since July 07
Below is my invoice I paid for an Apple Developer account, but until then I am not receiving any updates ,any one facing the same issues? Apple Invoice Receipt Dear Apple Customer, Thank you for shopping at the Apple Store ! If you have already paid for your purchase, please retain this invoice receipt for your records. If you need to send payment to Apple, please reference Apple's Invoice Number on your remittance. After remitting payment, please retain this invoice receipt for your records. Sold To: Invoice Number: Reference Date: Customer PO Number: MC85147200 2026-07-07 Invoice Date: Amount Due: Customer Number: 2026-07-07 .00 900001 Web Order Number: Sales Order Number: D004999471 AEZ2816474 Terms: Credit Card Item Product Number Product Description Total Ordered Total Shipped Unit Price Extended Price 001 D4521G/A APPLE DEVELOPER PROGRAM 1 1 99.00 99.00 Subtotal: 99.00 Tax: Shipping Charges: Total USD 99.00 Your xxxxxxx has been charged 99.00 For a total of ************$ 99.00 Sales Details Sales Person: 0000900001 Contact: EB Entry Date: 2026-07-07 Ship Date: 0000-00-00 Routing: Best Way
0
0
28
1d
Developer Program Enrollment Stuck
Hi Team, Requesting urgent attention for our Apple Developer Program Organization enrollment. Requested documents (ID, employment verification, business registration, DUNS number) were submitted on August 4, 2026 via the upload portal. Enrollment ID: 3CYZWM2J72 In this regards, I have raised an issue (Case ID: 20000134493406). Requesting your help in expediting our Apple Developer Program enrollment at the earliest as this delay is affecting our development and release timeline. Thank you very much for your understanding and support in helping us move this forward.
0
0
18
1d
Xcode crashes on every launch and is completely unusable.
I just upgraded MacOS to Tahoe 26.6.1, and upgraded XCode too. Then Xcode crashes on every launch and is completely unusable. Translated Report (Full Report Below) ------------------------------------- Process: Xcode [1718] Path: /Applications/Xcode.app/Contents/MacOS/Xcode Identifier: com.apple.dt.Xcode Version: 26.6 (24959) Build Info: IDEApplication-24959000000000000~2 (17F113) Code Type: ARM-64 (Native) Role: Background Parent Process: launchd [1] Coalition: com.apple.dt.Xcode [917] User ID: 502 Date/Time: 2026-08-13 11:26:33.1318 +0800 Launch Time: 2026-08-13 11:26:33.0308 +0800 Hardware Model: Mac16,8 OS Version: macOS 26.6.1 (25G76) Release Type: User Crash Reporter Key: ED18B1CA-EA9C-0657-0CF1-1EFA8C60919E Incident Identifier: 8350CBBA-0B41-4A77-B262-CD0662709FB1 Time Awake Since Boot: 47 seconds System Integrity Protection: disabled Triggered by Thread: 0, Dispatch Queue: com.apple.main-thread Exception Type: EXC_CRASH (SIGABRT) Exception Codes: 0x0000000000000000, 0x0000000000000000 Termination Reason: Namespace SIGNAL, Code 6, Abort trap: 6 Terminating Process: Xcode [1718] Thread 0 Crashed:: Dispatch queue: com.apple.main-thread 0 libsystem_kernel.dylib 0x1843745e8 __pthread_kill + 8 1 libsystem_pthread.dylib 0x1843af8d8 pthread_kill + 296 2 libsystem_c.dylib 0x1842b5978 abort + 148 3 libsystem_c.dylib 0x1842b5a94 abort_report_np + 84 4 Xcode 0x102624ed0 main.cold.1 + 36 5 Xcode 0x102624e1c main + 340 6 dyld 0x183fe44e4 start + 6992 Thread 0 crashed with ARM Thread State (64-bit): x0: 0x0000000000000000 x1: 0x0000000000000000 x2: 0x0000000000000000 x3: 0x0000000000000000 x4: 0x0000000000000073 x5: 0x000000000000002e x6: 0x000000016d7db278 x7: 0x0000000000000000 x8: 0x61cbe9e2533f85e8 x9: 0x61cbe9e3a3e16468 x10: 0x0000000000000002 x11: 0x00000000fffffffd x12: 0x0000000000000000 x13: 0x0000000000000000 x14: 0x0000000000000000 x15: 0x0000000000000000 x16: 0x0000000000000148 x17: 0x00000001f242f400 x18: 0x0000000000000000 x19: 0x0000000000000006 x20: 0x0000000000000103 x21: 0x00000001f0dee260 x22: 0x0000000102d5cbe0 x23: 0x00000001f0df5908 x24: 0x0000000000000001 x25: 0x000000016d7db6d0 x26: 0x00000001f0defa70 x27: 0x0000000000000000 x28: 0x0000000000000000 fp: 0x000000016d7db3f0 lr: 0x00000001843af8d8 sp: 0x000000016d7db3d0 pc: 0x00000001843745e8 cpsr: 0x40000000 far: 0x0000000000000000 esr: 0x56000080 (Syscall) Binary Images: 0x102624000 - 0x102627fff com.apple.dt.Xcode (26.6) <8025d4bb-71ea-3f57-bade-2e3c847b6cf3> /Applications/Xcode.app/Contents/MacOS/Xcode 0x18436b000 - 0x1843a82e7 libsystem_kernel.dylib (*) <7cfb3a10-adb2-32c4-99b5-922a111b3224> /usr/lib/system/libsystem_kernel.dylib 0x1843a9000 - 0x1843b5b3b libsystem_pthread.dylib (*) <12342372-0084-37a5-9ea6-2e4dc940c685> /usr/lib/system/libsystem_pthread.dylib 0x18423d000 - 0x1842be1e7 libsystem_c.dylib (*) <fdc4e366-5c14-3a1e-bc35-d933d28cdcf3> /usr/lib/system/libsystem_c.dylib 0x183fc4000 - 0x1840774ff dyld (*) <df42dd9d-ad11-33a7-8849-9ad5df30a274> /usr/lib/dyld 0x0 - 0xffffffffffffffff ??? (*) <00000000-0000-0000-0000-000000000000> ???
Replies
3
Boosts
0
Views
431
Activity
17h
Xcode 26.4: IBOutlets/IBActions gutter circles missing — cannot connect storyboard to code (works in 26.3)
I’m seeing a regression in Xcode 26.4 where Interface Builder will not allow connecting IBOutlets or IBActions. Symptoms: The usual gutter circle/dot does not appear next to IBOutlet / IBAction in the code editor Because of this, I cannot: drag from storyboard → code drag from code → storyboard The class is valid and already connected to the storyboard (existing outlets work) Assistant Editor opens the correct view controller file Important: The exact same project, unchanged, works perfectly in Xcode 26.3. I can create and connect outlets/actions normally there. ⸻ Environment Xcode: 26.4 macOS: 26.4 Mac Mini M4 Pro 64G Ram Project: Objective-C UIKit app using Storyboards This is a long-running, ObjC, project (not newly created) ⸻ What I’ve already tried To rule out the usual suspects: Verified View Controller Custom Class is correctly set in Identity Inspector Verified files are in the correct Target Membership Verified outlets are declared correctly in the .h file: @property (weak, nonatomic) IBOutlet UILabel *exampleLabel; Opened correct file manually (not relying on Automatic Assistant) Tried both: storyboard → code drag code → storyboard drag Tried using Connections Inspector Clean Build Folder Deleted entire DerivedData Restarted Xcode Updated macOS to 26.4 Ran: sudo xcodebuild -runFirstLaunch Confirmed required platform components installed Reopened project fresh ⸻ Observations In Xcode 26.4 the outlet “connection circles” are completely missing In Xcode 26.3 they appear immediately for the same code Existing connections still function at runtime — this is purely an Interface Builder issue ⸻ Question The gutter circles appearance has always been flaky in Xcode over the 13+ years I've been using it but now with 26.4 they have completely disappeared. Has anyone else seen this in Xcode 26.4, or found a workaround? At this point it looks like a regression in Interface Builder, but I haven’t found any mention of it yet.
Replies
35
Boosts
13
Views
4.9k
Activity
17h
Is it a known issue that Xcode static analyzer hallucinates past results?
[Q] Is it a known issue that the Xcode static analyzer hallucinates past results? Basically, the issue I've been observing for a few releases of Xcode now (including 27b) is that if you run a static analysis, fixes the reported issues and re-run a static analysis, you will get exactly the same results as with the first run. It's as if Xcode did not take into account the fixes. If you clean the builds (cmd + shift + K), and run the analysis again, this time, you will get up-to-date results.
Replies
0
Boosts
0
Views
22
Activity
17h
iPad 9th Generation 5GHz Network Issue
Greetings! We are experiencing an issue with Apple iPad 9th generation devices. A stationary iPad may lose connection with a 5 GHz Wi-Fi network. We ran an investigation and found that these iPads are getting stuck on access points when losing connectivity. Here is what we tested: We took 3 devices: iPad 9th generation running iPadOS 17.4.1 iPad 9th generation running iPadOS 26.5.2 iPad 11th generation running iPadOS 26.5.2 We walked around our space with Wireless Diagnostics enabled on the iPads. After some time, we compared the gathered logs. The iPad 9th generation, working on different iPadOS, when connected to a 5 GHz network, gets stuck on one AP. The 2.4 GHz network, on the other hand, works as intended regardless of the authentication method. The iPad 11th generation does not have this issue. Please confirm if this is a known problem. We would be glad to know if there are any fixes available. Attached you will find obfuscated wireless diagnostic logs. We can provide more detailed logs if needed. iPad_wireless_logs.txt
Replies
0
Boosts
0
Views
19
Activity
17h
Despite making a payment and verifying my identity, my account has been inactive since January 17th.
Hello. I made a developer account payment and completed identity verification on January 17, 2026. However, the developer account still shows as inactive. Furthermore, I've submitted requests for assistance, but haven't received a response to any of them. I need urgent help.
Replies
0
Boosts
1
Views
29
Activity
18h
Getting Gemini 3.5 or 3.6 Flash to work with Xcode 27 Beta
I've been trying for months to get Gemini 3.5 Flash to work with Xcode 27 Beta (1-3) agentic coding but have failed. Xcode currently uses Gemini CLI v0.42.0 from last year, so it can't call Gemini 3.5 Flash even though all that needs to change is a few characters in the API call. Gemini users are currently forced to choose between 3.1 Pro and 3.1 Flash Preview--both weren't the best choices two months ago, but with the release of 3.6 Flash which is better at coding that 3.1 Pro and miles cheaper, these choices are now unsuitable for any serious workload. I live in Hong Kong, where OpenAI and Anthropic services aren't offered, so Google is the only (native) AI provider for Xcode agentic coding. The cost issue from funneling all the work into 3.1 Pro is terrible especially with some agent bugs that have yet to be ironed out. Given Apple's close partnership with Google on AI, I'm genuinely surprised that after 4 Betas we're still using a Gemini CLI from 2025 that forces users to choose between two very unappealing models. Xcode is basically forcing Google users to switch to OpenAI/Anthropic. Questions: I'd like to know if this will be fixed soon and whether Google users should expect slower updates (i.e. be forced to use older models). Does anyone know of any workarounds?
Replies
4
Boosts
0
Views
361
Activity
20h
Xcode 27 Beta 4 regression: "Multiple commands produce" error when a SwiftPM binary xcframework product is linked from both an app target and an embedded framework target
In Xcode 27 Beta 4 (27A5228h), building a project that has a SwiftPM binary target (xcframework) linked directly from both an app target AND a framework target that is embedded in that app fails with "Multiple commands produce" errors. The same project and pbxproj builds successfully in Xcode 27 Beta 3 (27A5218g), so this is a regression introduced in Beta 4. Steps to Reproduce Create a new iOS App project. Add a Framework target (e.g. "SampleCommon") and embed it into the app. Add a SwiftPM dependency for a package that vends a binary xcframework product. Confirmed with airbnb/lottie-spm 4.6.1 (https://github.com/airbnb/lottie-spm). In "Frameworks, Libraries, and Embedded Content" of the app target, add the SwiftPM product (Lottie) with "Embed & Sign". In "Frameworks and Libraries" of the framework target, add the same SwiftPM product (Lottie). Build the app scheme for iOS Simulator. Expected result Build succeeds. The xcframework is embedded exactly once into the .app bundle. This is the behavior in Xcode 27 Beta 3 and Xcode 26. Actual result Build fails with: error: Unexpected duplicate tasks error: Multiple commands produce '.../<App>.app/Frameworks/Lottie.framework/Lottie' error: Multiple commands produce '.../<App>.app/Frameworks/Lottie.framework' Two Copy tasks are emitted for the same output path in the app target: Copy from Build/Products/Debug-iphonesimulator/PackageFrameworks/Lottie.framework Copy from SourcePackages/artifacts/lottie-spm/Lottie/Lottie.xcframework/ios-arm64_x86_64-simulator/Lottie.framework Additionally, an auto-generated target named "Lottiedynamic-product" emits duplicate MkDir / ProcessInfoPlistFile tasks for PackageFrameworks/Lottie.framework, which suggests the packaging path for binary xcframework products has been duplicated in Beta 4. Regression Xcode 27 Beta 3 (27A5218g): builds successfully Xcode 27 Beta 4 (27A5228h): fails with the above errors Xcode 26.x: builds successfully Minimal reproduction The issue reproduces on a 2-target Xcode project (app + framework) with airbnb/lottie-spm added and linked from both targetstory captures the smallest triggering diff: pattern1: app links Lottie only -> BUILD SUCCEEDED pattern2: framework links Lottie only -> BUILD SUCCEEDED pattern3: both app and framework link Lottie -> BUILD FAILED (only on Beta 4) Only the framework target's packageProductDependencies and Frameworks build phase entries differ between the succeeding and failing states. Workaround Link the SwiftPM binary product from only one target (either the app or the framework, not both). If only the framework tarl gets the framework transitively at runtime. Impact Any project that uses a SwiftPM binary xcframework and organizes code across multiple linked targets (a very common pattern for larger apps) is blocked from adopting Xcode 27 Beta 4. Environment Xcode 27.0 Beta 4 (27A5228h) macOS 26.5.2 Package: airbnb/lottie-spm 4.6.1 Destination: iOS Simulator (iPhone 17, latest)
Replies
8
Boosts
4
Views
410
Activity
1d
App Store submission blocked after Xcode 27 beta / macOS update
I am experiencing an App Store submission issue after updating my Mac development environment. A build of my iOS app can be uploaded and appears in App Store Connect/TestFlight, but when I try to use the build for App Review, it is rejected because it was built using a beta version of Xcode. I am currently using Xcode 27 beta because of the macOS environment installed on this Mac. I have been advised that I may need to return the Mac to a stable macOS/Xcode environment and rebuild the app. This is particularly concerning because the app and its development data already exist on this Mac, and reverting the development environment may require a full backup and OS reinstallation. I would like to know: What is the officially supported procedure to return to a stable macOS and Xcode environment without losing development data? Which stable Xcode version should be used to rebuild the app for App Store submission? Is there any supported way to submit the existing build, or must it be rebuilt completely with a non-beta Xcode? I would also like to know whether other developers using the current beta environment are experiencing the same App Store Connect submission restriction. I would also like clarification regarding responsibility and remediation in this situation. If a development environment provided through Apple’s software update or beta distribution results in an existing application becoming unable to be submitted to App Store Connect, what responsibility does Apple assume for the resulting disruption to developers? In particular, if resolving the issue requires backing up development data, reinstalling macOS, reinstalling Xcode, and rebuilding the application, does Apple provide an official recovery procedure or support for developers affected by this situation? I believe this is important not only for my application, but also for other developers who may encounter the same issue. I would appreciate an official clarification from Apple regarding both the technical solution and Apple’s policy for developers affected by this problem. Thank you.
Replies
2
Boosts
0
Views
102
Activity
1d
Individual enrollment blocked — photo ID upload fails for both passport and government ID
I'm attempting to enroll in the Apple Developer Program as an Individual. During identity verification, I'm asked to upload a photo of a government-issued ID or passport, and both document types are failing with distinct errors — not a generic failure, but two specific, different rejection messages depending on which document I try: For my government-issued national ID card: "An error occurred, the photo of your ID didn't upload. Please restart enrollment." This message repeats every time, regardless of how many times I restart and retry. For my passport: "Upload error, your identity could not be verified because the image you submitted is unclear or obscured. Please try again." Both documents were photographed carefully following Apple's own on-screen guidance for lighting and framing, and the resulting images are genuinely clear, sharp, and fully legible — not blurry, glared, cropped, or obscured in any way. I have retried multiple times with fresh photos for both documents, with the same two errors recurring consistently each time. Details: Enrollment type: Individual Country/Region: Pakistan Devices tried: [add your iPhone model + iOS version, and/or Mac model + macOS version here] Browser(s) tried: [add if you tried this on the web as well as the Apple Developer app] I have not been able to find a way to reach Developer Support directly to report this — the standard contact paths have not been accessible for this issue. Could someone confirm: Is there a known issue with photo ID upload for Individual enrollment currently, specifically affecting Pakistan or similar regions? Is there an alternative verification method or manual upload path available for cases where the standard upload consistently fails despite clear, well-lit images? Can this be escalated to the identity verification team? Any guidance would be genuinely appreciated — this is currently blocking enrollment entirely.
Replies
2
Boosts
1
Views
175
Activity
1d
Apple Developer Program team invitation keeps redirecting to the sign-in page
We are experiencing an issue when inviting a user to join our Apple Developer Program team through App Store Connect Users and Access. The purpose of adding this user is to include them as an internal TestFlight tester after the invitation is accepted. The invited user received the Apple Developer invitation email and clicked the "Accept invitation" link. The invitation link opens the following page: https://appstoreconnect.apple.com/activation_ds?key=... The page displays "Sign in to accept your invitation" and asks the user to sign in with an Apple Account. After the user signs in successfully, the page redirects back to the same sign-in page and asks the user to sign in again. The invitation cannot be accepted, and the user cannot join the Apple Developer Program team. Steps to reproduce: Go to Users and Access in App Store Connect. Add a new user and send an invitation to join the Apple Developer Program team. The invited user receives the Apple Developer invitation email. The invited user clicks the "Accept invitation" link. The page opens appstoreconnect.apple.com/activation_ds. The user signs in with an Apple Account. After signing in, the page redirects back to the same sign-in page. Repeating the sign-in process results in the same redirect loop. Expected result: The invitation should be accepted after the user signs in, and the user should be added to the Apple Developer Program team. Actual result: The page keeps redirecting back to the sign-in page, and the user cannot accept the invitation. Troubleshooting already tried: Safari and Chrome Private browsing mode Clearing browser cookies Signing out of Apple ID before opening the invitation link again Opening the link directly in the browser instead of an email app embedded browser The issue still occurs.
Replies
4
Boosts
3
Views
624
Activity
1d
Identity verification failed for developer account enrollment — no resolution after months of support emails
Hi all, I'm hoping someone from the community or Apple can point me in the right direction, as I've hit a wall I can't get past through normal support. My situation: I tried to enrol in the Apple Developer Program as an Individual. Enrollment failed at the identity verification stage in the Apple Developer app, and the app no longer gives me any option to retry. I've since received the same reply twice from Developer Support: that they "can't verify my identity with the Apple Developer app or provide further assistance with the Apple Account for Apple developer programs." I then obtained a D-U-N-S number for my registered business and attempted Organization enrollment instead — but I'm blocked there as well. What I've already done on my side: Confirmed my Apple Account name matches my government-issued photo ID exactly Corrected my account address and payment details Enabled two-factor authentication and set a trusted phone number Opened multiple support cases but I don't receive any response. My question: Since both Individual and Organization enrollment are blocked, is this a flag on my Apple Account itself rather than on the enrollment type? If so, what is the correct route to have that reviewed? Is there a specific team or a phone escalation path that can look at an account-level verification block? Email support has not been able to help. I have a finished app ready to submit and I'm simply trying to find the right door. Any guidance from those who've resolved a similar verification issue would be hugely appreciated. Thank you.
Replies
0
Boosts
0
Views
33
Activity
1d
Is there a real Swift Package Manager Registry in existence?
I would like to be able to use an SPM registry to access the various open source packages that my app uses. I want to do this so that I can use JFrog's Artifactory as a registry proxy, and manage my app's dependencies through it. I've found an announcement in 2019 that GitHub Package Registry was going to support Swift packages, but I have found no newer info. All the other things I've found which call themselves Swift package registries do not conform to SE-0292. Are there any public SPM registries? Will there be any in the near future?
Replies
3
Boosts
0
Views
1.5k
Activity
1d
Account suspended due to automated 14-day timeout during address verification
Hello, I am facing a critical issue with my Apple Developer Account verification process where an automated timer suspended my account despite submitting all requested documents on day one. Timeline & Details: I received a request from Apple to upload address verification documents with a 14-day deadline. I uploaded all requested documents on the very first day. While waiting for the review process to be completed on Apple's end, the 14-day window expired. Consequently, the system automatically suspended my account, disabling certificate creation and blocking development/distribution. I have open support tickets, but have not received a response yet. Case ID: 102944887663 Since this is an automated timeout caused by review delay, could someone from the Apple team please help escalate this Case ID to the Enrollment / Account Verification team? Thank you very much for your help!
Replies
6
Boosts
3
Views
606
Activity
1d
Enrolment
Hey, does anyone know how long the enrolment process needs? enrollment ID is QARGL6A9YV - maybe someone can help, we wanna start as soon as possible :-)
Replies
0
Boosts
0
Views
27
Activity
1d
Enrollment stuck in "being processed" 14+ days after document submission (ID: 68UYPM637K)
Hello everyone, I'm hoping someone from the Apple Developer support team or another developer who's been through this can help. Enrollment ID: 68UYPM637K Organization: CHARRY - INDUSTRIA E COMERCIO DE CONFECCOES LTDA Timeline so far: This enrollment was submitted by our company's owner/founder, who has the legal authority to bind the organization to agreements. We received a request for identity verification documents (government-issued photo ID, Articles of Association, and CNPJ card for the organization). We submitted all requested documents through the secure upload portal on July 29, 2026 (14 days ago). Checking developer.apple.com/account directly, the enrollment still shows as "being processed," with no further update or request since then. At this point we've submitted everything requested and haven't received any update in 14 days. This is delaying a planned app launch for our company. Has anyone else experienced a delay like this after submitting documents? Is there anything else we should try, or can someone from Apple please take a look at enrollment 68UYPM637K? Thank you in advance for any guidance.
Replies
5
Boosts
2
Views
421
Activity
1d
Issues updating W-9 and bank
After my account was converted to an organizational account, I tried to submit a new W-9, but I get an error: "The Type of Beneficial Owner does not match the individual or company status you previously provided." I had selected "Individual/Sole proprietor", based on my understanding that this is what should be selected on the W-9 for a single-member LLC. My initial guess as to what's causing the error, is my single-member LLC may have been miscategorized in the migration to an organization account so the intended option doesn't work. As per the official W-9 instructions, a single-member LLC should be categorized as an "Individual/sole proprietor or single-member LLC" on the form for tax purposes, but when I select "Individual/Sole Proprietor" on the "Type of Beneficiary Owner" dropdown on the App Store Connect front-end form for the W-9, which I assume corresponds with the aforementioned option on the true W-9 form that includes "single-member LLC", I get the aforementioned error. I was alternatively informed by Developer Support that the above error may be occurring because I haven't signed the latest Apple Program License Agreement, which I haven't been able to access, which they claimed is because I hadn't provided banking information for my account. So I added my business bank account but a week later the top of the Business section still says "Your banking updates are processing, and you should see the changes in 24 hours. You won't be able to make any additional updates until then." I contacted Apple Developer Support about all of the above and am still waiting for a response. While I wait, I'd like to ask here whether anyone has any ideas as to why the W-9 error is occuring or how long banking changes actually take to process, in case either of these is something I can resolve in the meantime.
Replies
10
Boosts
0
Views
535
Activity
1d
Enrollment stuck
Hi. I was trying to enroll apple developer program, but after uploading my ID I was told to contact apple developer support. I reached out the support and they told me my ID is not sufficient for some reason and I have to re-upload it. When i tried to do so it wouldn't allow me and telling me to contact apple support. I tried to arrange a call but after 1 day waiting on one is picking up. So basically I'm stuck in a loop that I have no idea what to do. The case ID: 20000134414907. If any apple staff seeing this please help. Thank you!
Replies
0
Boosts
0
Views
33
Activity
1d
Individual Enrollment Pending Since July 07
Below is my invoice I paid for an Apple Developer account, but until then I am not receiving any updates ,any one facing the same issues? Apple Invoice Receipt Dear Apple Customer, Thank you for shopping at the Apple Store ! If you have already paid for your purchase, please retain this invoice receipt for your records. If you need to send payment to Apple, please reference Apple's Invoice Number on your remittance. After remitting payment, please retain this invoice receipt for your records. Sold To: Invoice Number: Reference Date: Customer PO Number: MC85147200 2026-07-07 Invoice Date: Amount Due: Customer Number: 2026-07-07 .00 900001 Web Order Number: Sales Order Number: D004999471 AEZ2816474 Terms: Credit Card Item Product Number Product Description Total Ordered Total Shipped Unit Price Extended Price 001 D4521G/A APPLE DEVELOPER PROGRAM 1 1 99.00 99.00 Subtotal: 99.00 Tax: Shipping Charges: Total USD 99.00 Your xxxxxxx has been charged 99.00 For a total of ************$ 99.00 Sales Details Sales Person: 0000900001 Contact: EB Entry Date: 2026-07-07 Ship Date: 0000-00-00 Routing: Best Way
Replies
0
Boosts
0
Views
28
Activity
1d
Dashboard support disabled ,Enrollment pending since July 17.
I applied for an individual account on July 17. My payment went through. Support emails have stopped, and phone calls are disabled on my dashboard. I just need a compliance agent to review my pending ID verification
Replies
0
Boosts
0
Views
16
Activity
1d
Developer Program Enrollment Stuck
Hi Team, Requesting urgent attention for our Apple Developer Program Organization enrollment. Requested documents (ID, employment verification, business registration, DUNS number) were submitted on August 4, 2026 via the upload portal. Enrollment ID: 3CYZWM2J72 In this regards, I have raised an issue (Case ID: 20000134493406). Requesting your help in expediting our Apple Developer Program enrollment at the earliest as this delay is affecting our development and release timeline. Thank you very much for your understanding and support in helping us move this forward.
Replies
0
Boosts
0
Views
18
Activity
1d