Posts under Developer Tools & Services topic

Post

Replies

Boosts

Views

Created

Reconstruction with Object Mask in PhotogrammetrySession Fails .
Reconstruction with Object Mask in PhotogrammetrySession Fails and doesn't complete because of alignment and object masks with thing segmentation even after increasing the mask region . Also the PhotogrammetrySample hangs with EXC_BREAKPOINTwhen I usePhotogrammetrySession(input: [PhotogrammetrySample])withobjectMask set and the Apple Developer Forums report crashes (“HelloPhotogrammetry” / sample+mask), and (EXC_BREAKPOINT` was being observed at ~4 GB) with freezing the execution and Xcode interface
0
0
2
34m
Migration From Individual To Organization
Hello, I initiated my request to migrate from individual to organization account more than a week back. I submitted all the documents but still there is no update. Can you please help me with this and expedite the process. Also if you can give me visibility on the state where its stuck at that would be great. My enrollment ID is NL4N2SPXQB
0
0
4
1h
Migration From Individual To Organization
Hello, I initiated my request to migrate from individual to organization account more than a week back. I submitted all the documents but still there is no update. Can you please help me with this and expedite the process. Also if you can give me visibility on the state where its stuck at that would be great. My enrollment ID is NL4N2SPXQB.
0
0
2
1h
Apple trashed CODEX this morning.
This morning my MacMini wokeup to this. CODEX was on the trash bin and every single fix suggested by ChatGPT didn't worked. If this is the result of a pissing contest between Apple and OpenAI, this is defeneteley a childish attitude and a good way to pissof developers worldwide.
0
0
5
1h
How do I cancel my developer account
I have my primary apple account associated with email A and I created a separate email B for my app. I then created an apple developer account using email B and paid for the $99 subscription. Note that I enrolled in the developer program through the Apple Developer App on my phone which is signed into account A. Two months ago, I did not want my subscription to renew, so I tried visiting this link to can cancel it https://developer.apple.com/account#MembershipDetailsCard Unintuitively, this does not let me modify my membership participation, only contact details. I then tried canceling the subscriptions here by checking my subscriptions for both account A and account B https://account.apple.com/account/manage/section/subscriptions Unintuitively, I saw the developer subscription for the account associated with email A, not B, so I canceled it there. Today, I see the subscription as inactive and neither account A or B have an active developer subscription. As an added measure, I removed all saved billing information from account B so any subscription associated with that account shouldn't be able to charge me. Yesterday I received an email and credit card statement saying I was charged $99 for renewal. This seems to be a serious privacy and security issue given a. A nonexisting subscription on account B charged a credit card that account B should not have access to b. There is no indication whatsoever that account A and B are linked on the apple account page. If they are in fact linked since I enrolled in the developer program on a phone belonging to account A, it ought to be clearly shown on account A that this is the case since that is what I'm being billed for. c. What is the source of truth for apple subscriptions? Clearly not the subscriptions page owned by account A or account B in this case. I expect a full refund for this
0
0
16
2h
Developer Program enrollment not completing - Apple Support unresponsive
Hi everyone, Before posting this, I spent a lot of time reading through existing threads here, and it's becoming clear that I'm far from alone. A large number of developers seem to be stuck on essentially the same issue: the Apple Developer Program enrollment process simply isn't working, and Apple Support is either unresponsive or unable to resolve it. Here's my situation: I completed every step of the enrollment process correctly. When asked, I submitted my ID for verification and then submitted it again upon a second request. All my information has been verified, and I've received invoices confirming payment. I was told the process would take up to 48 hours. It has now been 1 week with no progress. Strangely, I even received a shipment tracking link, which makes no sense to me in the context of a digital developer account enrollment. What I genuinely don't understand is this: how is it possible that so many people - myself included - are stuck in the exact same loop, with no response from Apple Support, no working solution shared in the forums, and yet we're all being charged for a membership we can't actually access or use? I'm not trying to vent for the sake of it. I'd really appreciate it if: Anyone from Apple could clarify what's going on with enrollment processing right now. Anyone who managed to resolve this could share what actually worked for them (specific contact channels, escalation paths, anything). If there's a known issue on Apple's side, even an acknowledgment would go a long way. Right now it feels like we've paid for a service that simply doesn't deliver, with no way to reach anyone who can help. Thanks in advance to anyone who can shed some light on this. Best regards
1
0
49
9h
xcodebuild test (CLI) does not sync .storekit to storekitd on iOS 26.5 — SKTestSession unusable in CI
On iOS 26.5 simulator runtime, running UI tests via xcodebuild test from the command line does not push the scheme's StoreKitConfigurationFileReference to the destination simulator's storekitd AppGroup Octane container. As a consequence, SKTestSession(configurationFileNamed:) either silently falls through to the production App Store (surfacing a "Sign in to Apple Account" SpringBoard alert during paywall tests), or throws SKInternalErrorDomain Code=3 "Error saving configuration file" if you call any SKTestSession instance method. The same project, same scheme, same .storekit file works correctly when launched via Xcode IDE (Cmd+R / Cmd+U) — which uses DVTDevice.handleStoreKitConfigurationSyncForBundleID:configurationFilePath: via an internal IDELaunchSession XPC path that the public xcodebuild CLI does not invoke. This regression makes StoreKit Test unusable in CI for any project using xcodebuild test or xcodebuild test-without-building against an iOS 26.5 simulator. Environment macOS: 26.x Xcode: 26.4.1 (25E253) iOS Simulator runtime affected: 26.5 iOS Simulator runtime that does not exhibit the bug: 26.1 Test target: XCTest UI tests Test plan: *.xctestplan with "storeKitConfiguration": "MyApp.storekit" in defaultOptions Affected scheme actions: Test (CLI) Not affected: Run, Test (Xcode IDE) Steps to Reproduce Create a SwiftUI iOS app com.example.MyApp. Add a MyApp.storekit with one auto-renewable subscription. Add a UI test target. In the xctestplan: defaultOptions.storeKitConfiguration = "MyApp.storekit". In the UI test base case: private var storeKitSession: SKTestSession? override func setUpWithError() throws { storeKitSession = try SKTestSession(configurationFileNamed: "MyApp") app.launch() } Boot a fresh iOS 26.5 simulator. Run via CLI: xcodebuild test \ -project MyApp.xcodeproj \ -scheme MyApp \ -testPlan MyAppUITests \ -destination "platform=iOS Simulator,name=iPhone 17 Pro" In the test, trigger paywall and call Product.purchase(). Expected Product.purchase() presents the StoreKit Test sheet labeled "[Environment] Xcode". Same behavior as Xcode IDE Cmd+U. Actual Production App Store flow triggers. SpringBoard alert "Sign in to Apple Account" appears. Tests waiting on the "Xcode"-labeled sheet fail with Element does not exist. Evidence The simulator's ~/Library/Developer/CoreSimulator/Devices/<UDID>/data/Containers/Shared/AppGroup/<storekit-AGID>/Documents/Persistence/Octane/com.example.MyApp/Configuration.storekit: Present (≈100 KB) when launched via Xcode IDE. Missing when launched via xcodebuild test CLI on the same simulator UDID. Workarounds Attempted (all fail on iOS 26.5) No-op XCTestCase "warmup" that calls XCUIApplication.launch() + sleep — does not trigger the sync because XCUIApplication.launch() routes through XCTRunner, not IDELaunchSession. Multi-destination xcodebuild test with -parallelize-tests-among-destinations. Manually cp-ing the .storekit file into the AppGroup Octane container — storekitd only loads via the XPC channel. launchctl kickstart -k system/com.apple.storekitd — wipes in-memory state, does not pick up disk file. Only working workaround: open project in Xcode IDE, Cmd+R, wait ~20–30 sec, Cmd+., then Cmd+U. Not viable for CI. Related Open Feedback FB22237318 — SKTestSession instance methods (clearTransactions(), failTransactionsEnabled = true) throw SKInternalErrorDomain Code=3 "Error saving configuration file". Discussion thread: https://developer.apple.com/forums/thread/808030 The iOS 26.5 Release Notes (https://developer.apple.com/documentation/ios-ipados-release-notes/ios-ipados-26_5-release-notes) under StoreKit Test list this issue as resolved in 26.5: "Fixed: SKTestSession may fail to save its configuration file when invoked outside of an Xcode debug session." However, on the public iOS 26.5 simulator runtime the behavior is unchanged — SKTestSession still hits Code=3 on any mutation, and xcodebuild test from CLI still does not sync the .storekit configuration. The 26.5 fix either did not actually ship, or this report describes a distinct but related issue that the fix did not cover. Impact Any CI/CD pipeline running UI tests for apps with StoreKit subscriptions is broken when targeting an iOS 26.5 simulator. Workarounds are either: Pin CI simulator runtime to iOS 26.1. Manually run the project in Xcode IDE before each test run (impossible headless). Has anyone found a CLI-friendly workaround? Or is there an undocumented xcodebuild flag / simctl command that can trigger the same DVTDevice sync from outside the IDE?
1
0
19
10h
Non-Consumable IAP stuck in ‘Developer Action Required’ – cannot link to version page
My Non-Consumable IAP was rejected with Guideline 3.1.1 and now has status ‘Developer Action Required’. The problem: On the version page in App Store Connect, the ‘In-App Purchases and Subscriptions’ section does not appear at the bottom. I cannot link the IAP to a new version submission. Every time I submit a new binary, Apple approves the app version but rejects the IAP afterward — even though I have no way to attach it to the version in the first place. This seems to be a circular issue: the IAP doesn’t appear on the version page because of its current status, but the only way to fix the status is to submit it with a new version. Has anyone experienced this and found a solution? Any help appreciated!​​​​​​​​​​​​​​​​
0
0
19
12h
"Clean Build Folder…" vs "Clean Build Folder Immediately"?
Xcode 26 (and previous versions) have these options: "Clean Build Folder…" vs "Clean Build Folder Immediately" (if you hold the option key). I can't tell how they're different. The ellipsis traditionally means you're going to get a dialog you have to address before the command will execute, but that doesn’t happen. Both seem to just delete files in the build folder.
0
0
43
15h
Apple Developer Program Enrollment Blocked
I've been unable to complete my Apple Developer Program enrollment for several months now. The process fails with the generic error: "Your enrollment in the Apple Developer Program could not be completed at this time." I've contacted Developer Support multiple times, but have either received no response or only boilerplate replies that restate the error without any explanation. No specific reason for the block has ever been provided. Enrollment ID: 3FUHF37838
0
0
76
21h
M4 Mac Mini: Xcode generates private keys with wrong label - codesigning impossible
M4 Mac Mini: Xcode generates private keys with wrong label - codesigning impossible Background This is a follow up to my November 2024 thread "Keychain issues after installing backup on new Mac" which was closed because I had a temporary workaround. That workaround using my wife's MacBook Air for signing is not sustainable. I used AI assistance to determine the root cause. My DTS case 102877839447 is open but has not yet been forwarded to a DTS engineer. Environment Mac Mini M4, macOS 15.4.1 (Build 25E253) Xcode 26.4.1 (17E202) Team ID: Q23726668V (Computerade Products) Working comparison machine: MacBook Air, macOS 15.3 Precise Bug — Reproducible Every Time Every time Xcode generates a new certificate and key pair on my Mac Mini: Certificate: Apple Development: Michael Birch (9KD5TCGGHG) ✅ Private key: Apple Development: Michael Birch (Computerade Products) ❌ The key uses the organization name instead of the certificate identifier. They never pair as a valid codesigning identity. security find-identity -v -p codesigning always returns 0 valid identities. Cryptographic Evidence The internal application labels confirm the keys are cryptographically unrelated to their certificates: Key internal application label: 53C26EB056997276B5E938258D00665ACABD1F0F Certificate public key hash: 57cd1af4a9162f26b1a6d750e05a63a2166b75ff These do not match ❌ Confirmed Eliminated As Causes Keychain search list corruption — found and fixed Partition list — set correctly Access control — set to allow all applications Full Disk Access — granted to Xcode Xcode caches and preferences — completely cleared Login keychain — completely reset Orphaned certificates and keys — all removed SIP enabled, system fully up to date Valid P12 Import Also Fails A p12 exported from the working MacBook Air and cryptographically verified as a matched pair also fails on the Mac Mini: security import returns MAC verification failed Keychain Access import returns OSStatus -2 Importing certificate and key separately as PEM files succeeds but they are not recognized as a valid identity pair despite matching application labels A3F3F193B7896DA9055353F59AB450778CB09AE7 Question Is there a known issue with M4 Mac Mini keychain infrastructure where private keys are generated with incorrect internal application labels? Is there a lower level diagnostic or fix beyond what the security command provides? The problem is specific to my Mac Mini M4 and persisted thru more than a year of Mac OS and xCode updates.
0
0
21
22h
Locked Out of Developer Account
I am locked out of my developer account, and was told by Apple Support that I cant reset or unlock it because its not a "real Apple ID", and I just created the login on the Apple Developer page last week, so I cannot access my TestFlights and things in there, and am stuck until I can get back in. When I try and login to Apple Developer, I get an error that says "Check the account information and try again". Then I try and reset, it tells me that there’s an issue with the account, and bounces be between account.apple.com (which doesnt let me log in) and Apple Developer (which doesnt let me log in). Apple Support cant help me, and Apple Developer doesnt have a help line, so they asked me to post here.
0
0
24
22h
Parallax Previewer v2 crashes in macOS 26.4.1, Tahoe.
I can run v1 of Parallax Previewer just fine, but v2 pops up an error on open. In console I can see a crash log that states that CoreRe.framework is looking for _FigSTSCreate inside the system's MediaToolbox.framework. I guess Tahoe doesn't have that. Is there a new version coming that works on Tahoe? or a workaround? I couldn't find an existing discussion about this. thanks.
1
0
61
23h
Apple Developer Program Payment Successful but Enrollment Still Pending After 9 Days
Title: Apple Developer Program Payment Successful but Enrollment Still Pending After 9 Days Hello everyone, I’m facing an issue with my Apple Developer Program enrollment and would really appreciate guidance from the community. I purchased the Apple Developer Program on 11 May 2026 and the payment of ₹8700 INR was successfully deducted from my account. The subscription is visible in my Apple ID subscriptions and shows active renewal until May 2027. However, my developer account still shows: “Complete your purchase” / pending enrollment. It has now been 9 days without activation. During this time I have: Created 5 support tickets Sent multiple emails to Apple Developer Support Requested callbacks several times Waited on support calls for long periods Shared payment proof, subscription screenshots, and all requested details A support representative named Connor from Developer Support replied stating that they were unable to confirm any payment attempts from my Apple Account and requested: detailed issue description screenshots error messages steps already taken I responded with all requested information, including screenshots showing: successful payment deduction active Apple subscription until 2027 pending developer enrollment screen The confusing part is that: Apple subscription/billing side confirms the subscription exists payment was successfully deducted subscription is active until 2027 But Developer Support still says they cannot see the payment on their side. After sending all proofs and requested information, I stopped receiving replies and the issue still remains unresolved. At this point I feel stuck between billing support and developer support with no clear resolution path. Has anyone experienced something similar? How long did it take to resolve? Is there any proper escalation path for Apple Developer enrollment/payment verification issues? Any help or suggestions would be greatly appreciated. Thank you.
2
1
111
1d
Apple Developer Enrollment Still Under Review After 13 Days (Documents Already Submitted)
Hi everyone, I’m currently trying to enroll in the Apple Developer Program (Individual account), but my enrollment has been stuck under review for quite a long time. Timeline: I initially enrolled through the web Apple Support requested additional verification documents I submitted: Government ID Bank statement (proof of address) It has now been 13 days since I submitted the documents The last response from Apple Support was about a week ago saying: “We’re currently reviewing your inquiry” I also noticed that in the Apple Developer app, the “Enroll Now” button is disabled and it says: “Enrollment through the Apple Developer app is not available for this Apple Account.” I have already called support multiple times, but they only tell me that the case is still under review. Has anyone experienced something similar recently? How long did your manual verification take? Did your enrollment eventually get approved? Is there anything else I should do besides waiting? Thanks in advance.
0
0
30
1d
Unable to Complete Apple Developer Enrollment — “Unknown error occurred” after Agreement step
Hello, I’m trying to enroll in the Apple Developer Program, but I’m running into an issue during the payment/enrollment process. Here is my situation: I currently live in New York, NY, USA I am temporarily staying in Uzbekistan My payment card is a USA card The card is linked to my Apple ID My Apple ID region/payment information is set correctly When I try to purchase the annual Apple Developer subscription, everything works until the “Agreement” step. After that, the process does not continue and I receive this error message: “Error in Apple Developer enrollment (Unknown error occurred)” I have already tried: Different browsers Different internet connections Re-signing into my Apple ID Checking payment information Unfortunately, the issue still persists. Has anyone experienced something similar, or does anyone know how this can be resolved? I would really appreciate any help or guidance. Regards!
1
0
44
1d
CNCopyCurrentNetworkInfo returns SSID on iPhone 12 Pro (iOS 18.6.2) but returns nil on iPhone 13 (iOS 26.4.2)
I need official technical support regarding the CNCopyCurrentNetworkInfo API. My app can successfully get the Wi-Fi SSID on iPhone 12 Pro (iOS 18.6.2). But on iPhone 13 (iOS 26.4.2), the same code always returns nil and cannot get the Wi-Fi name. I have already enabled: Access WiFi Information capability Location Permission (When in Use) The app is in foreground Here is my code: private func getCurrentWiFiName() -> String? { if let interfaces = CNCopySupportedInterfaces() as? [String] { print("Detected \(interfaces.count) network interfaces") for (index, interface) in interfaces.enumerated() { print("Interface \(index): \(interface)") if let info = CNCopyCurrentNetworkInfo(interface as CFString) as? [String: Any] { print("Interface \(index) info: \(info)") if let ssid = info[kCNNetworkInfoKeySSID as String] as? String { print("Successfully got SSID: \(ssid)") return ssid } } else { print("Failed to get info for interface \(index)") } } } else { print("Failed to get network interfaces") } return nil } My questions: Why does this API work on iOS 18.6.2 but not on iOS 26.4.2? Has Apple restricted or disabled CNCopyCurrentNetworkInfo in iOS 26+? What is the official supported way for normal App Store apps to get Wi-Fi SSID on iOS 26? Thank you for your help.
0
0
12
1d
Apple Developer Program enrollment stuck with “Complete your purchase” and “Duplicate order”
Hello, I am trying to enroll in the Apple Developer Program, but my enrollment appears to be stuck. I submitted my latest enrollment order on Wednesday, and today is Monday. My account still shows: “Purchase your membership. To continue your enrollment, complete your purchase now. Your purchase may take up to 48 hours to process.” However, my card has not been charged, and my membership is still not active. I previously canceled an earlier enrollment order and created a new one, but I also received a “Duplicate order” error. Now I am not sure whether there is a pending order, a duplicate order, or a stuck payment state on my account. I contacted Apple Developer Support by email and also requested a phone callback. I waited around 90 minutes on the first call without reaching an agent, then received another callback and waited again for more than 40 minutes without anyone answering. My card works normally for international online payments. Also, when I enter the card details, I am not redirected to any payment confirmation or 3D Secure page, and I am not asked for CVV. The order just goes into processing. Has anyone experienced the same issue with Apple Developer Program enrollment? How did you resolve the stuck “Complete your purchase” / “Duplicate order” state? Any advice would be appreciated. I can provide my Enrollment ID privately to Apple Support if needed.
0
0
81
1d
Reconstruction with Object Mask in PhotogrammetrySession Fails .
Reconstruction with Object Mask in PhotogrammetrySession Fails and doesn't complete because of alignment and object masks with thing segmentation even after increasing the mask region . Also the PhotogrammetrySample hangs with EXC_BREAKPOINTwhen I usePhotogrammetrySession(input: [PhotogrammetrySample])withobjectMask set and the Apple Developer Forums report crashes (“HelloPhotogrammetry” / sample+mask), and (EXC_BREAKPOINT` was being observed at ~4 GB) with freezing the execution and Xcode interface
Replies
0
Boosts
0
Views
2
Activity
34m
Migration From Individual To Organization
Hello, I initiated my request to migrate from individual to organization account more than a week back. I submitted all the documents but still there is no update. Can you please help me with this and expedite the process. Also if you can give me visibility on the state where its stuck at that would be great. My enrollment ID is NL4N2SPXQB
Replies
0
Boosts
0
Views
4
Activity
1h
Migration From Individual To Organization
Hello, I initiated my request to migrate from individual to organization account more than a week back. I submitted all the documents but still there is no update. Can you please help me with this and expedite the process. Also if you can give me visibility on the state where its stuck at that would be great. My enrollment ID is NL4N2SPXQB.
Replies
0
Boosts
0
Views
2
Activity
1h
Apple trashed CODEX this morning.
This morning my MacMini wokeup to this. CODEX was on the trash bin and every single fix suggested by ChatGPT didn't worked. If this is the result of a pissing contest between Apple and OpenAI, this is defeneteley a childish attitude and a good way to pissof developers worldwide.
Replies
0
Boosts
0
Views
5
Activity
1h
How do I cancel my developer account
I have my primary apple account associated with email A and I created a separate email B for my app. I then created an apple developer account using email B and paid for the $99 subscription. Note that I enrolled in the developer program through the Apple Developer App on my phone which is signed into account A. Two months ago, I did not want my subscription to renew, so I tried visiting this link to can cancel it https://developer.apple.com/account#MembershipDetailsCard Unintuitively, this does not let me modify my membership participation, only contact details. I then tried canceling the subscriptions here by checking my subscriptions for both account A and account B https://account.apple.com/account/manage/section/subscriptions Unintuitively, I saw the developer subscription for the account associated with email A, not B, so I canceled it there. Today, I see the subscription as inactive and neither account A or B have an active developer subscription. As an added measure, I removed all saved billing information from account B so any subscription associated with that account shouldn't be able to charge me. Yesterday I received an email and credit card statement saying I was charged $99 for renewal. This seems to be a serious privacy and security issue given a. A nonexisting subscription on account B charged a credit card that account B should not have access to b. There is no indication whatsoever that account A and B are linked on the apple account page. If they are in fact linked since I enrolled in the developer program on a phone belonging to account A, it ought to be clearly shown on account A that this is the case since that is what I'm being billed for. c. What is the source of truth for apple subscriptions? Clearly not the subscriptions page owned by account A or account B in this case. I expect a full refund for this
Replies
0
Boosts
0
Views
16
Activity
2h
VZVirtualMachineView window and system function keys
HI, I am trying to send system function keys like F10, F11 to VzVirtualMachineView window and it is not registering system assigned function keys. The function keys that are not assinged by mac are being send correctly. Is there a way i can send system assigned function keys to VZVirtualMachineView Window? Thanks and Regards
Replies
0
Boosts
0
Views
30
Activity
4h
Developer Program enrollment not completing - Apple Support unresponsive
Hi everyone, Before posting this, I spent a lot of time reading through existing threads here, and it's becoming clear that I'm far from alone. A large number of developers seem to be stuck on essentially the same issue: the Apple Developer Program enrollment process simply isn't working, and Apple Support is either unresponsive or unable to resolve it. Here's my situation: I completed every step of the enrollment process correctly. When asked, I submitted my ID for verification and then submitted it again upon a second request. All my information has been verified, and I've received invoices confirming payment. I was told the process would take up to 48 hours. It has now been 1 week with no progress. Strangely, I even received a shipment tracking link, which makes no sense to me in the context of a digital developer account enrollment. What I genuinely don't understand is this: how is it possible that so many people - myself included - are stuck in the exact same loop, with no response from Apple Support, no working solution shared in the forums, and yet we're all being charged for a membership we can't actually access or use? I'm not trying to vent for the sake of it. I'd really appreciate it if: Anyone from Apple could clarify what's going on with enrollment processing right now. Anyone who managed to resolve this could share what actually worked for them (specific contact channels, escalation paths, anything). If there's a known issue on Apple's side, even an acknowledgment would go a long way. Right now it feels like we've paid for a service that simply doesn't deliver, with no way to reach anyone who can help. Thanks in advance to anyone who can shed some light on this. Best regards
Replies
1
Boosts
0
Views
49
Activity
9h
xcodebuild test (CLI) does not sync .storekit to storekitd on iOS 26.5 — SKTestSession unusable in CI
On iOS 26.5 simulator runtime, running UI tests via xcodebuild test from the command line does not push the scheme's StoreKitConfigurationFileReference to the destination simulator's storekitd AppGroup Octane container. As a consequence, SKTestSession(configurationFileNamed:) either silently falls through to the production App Store (surfacing a "Sign in to Apple Account" SpringBoard alert during paywall tests), or throws SKInternalErrorDomain Code=3 "Error saving configuration file" if you call any SKTestSession instance method. The same project, same scheme, same .storekit file works correctly when launched via Xcode IDE (Cmd+R / Cmd+U) — which uses DVTDevice.handleStoreKitConfigurationSyncForBundleID:configurationFilePath: via an internal IDELaunchSession XPC path that the public xcodebuild CLI does not invoke. This regression makes StoreKit Test unusable in CI for any project using xcodebuild test or xcodebuild test-without-building against an iOS 26.5 simulator. Environment macOS: 26.x Xcode: 26.4.1 (25E253) iOS Simulator runtime affected: 26.5 iOS Simulator runtime that does not exhibit the bug: 26.1 Test target: XCTest UI tests Test plan: *.xctestplan with "storeKitConfiguration": "MyApp.storekit" in defaultOptions Affected scheme actions: Test (CLI) Not affected: Run, Test (Xcode IDE) Steps to Reproduce Create a SwiftUI iOS app com.example.MyApp. Add a MyApp.storekit with one auto-renewable subscription. Add a UI test target. In the xctestplan: defaultOptions.storeKitConfiguration = "MyApp.storekit". In the UI test base case: private var storeKitSession: SKTestSession? override func setUpWithError() throws { storeKitSession = try SKTestSession(configurationFileNamed: "MyApp") app.launch() } Boot a fresh iOS 26.5 simulator. Run via CLI: xcodebuild test \ -project MyApp.xcodeproj \ -scheme MyApp \ -testPlan MyAppUITests \ -destination "platform=iOS Simulator,name=iPhone 17 Pro" In the test, trigger paywall and call Product.purchase(). Expected Product.purchase() presents the StoreKit Test sheet labeled "[Environment] Xcode". Same behavior as Xcode IDE Cmd+U. Actual Production App Store flow triggers. SpringBoard alert "Sign in to Apple Account" appears. Tests waiting on the "Xcode"-labeled sheet fail with Element does not exist. Evidence The simulator's ~/Library/Developer/CoreSimulator/Devices/<UDID>/data/Containers/Shared/AppGroup/<storekit-AGID>/Documents/Persistence/Octane/com.example.MyApp/Configuration.storekit: Present (≈100 KB) when launched via Xcode IDE. Missing when launched via xcodebuild test CLI on the same simulator UDID. Workarounds Attempted (all fail on iOS 26.5) No-op XCTestCase "warmup" that calls XCUIApplication.launch() + sleep — does not trigger the sync because XCUIApplication.launch() routes through XCTRunner, not IDELaunchSession. Multi-destination xcodebuild test with -parallelize-tests-among-destinations. Manually cp-ing the .storekit file into the AppGroup Octane container — storekitd only loads via the XPC channel. launchctl kickstart -k system/com.apple.storekitd — wipes in-memory state, does not pick up disk file. Only working workaround: open project in Xcode IDE, Cmd+R, wait ~20–30 sec, Cmd+., then Cmd+U. Not viable for CI. Related Open Feedback FB22237318 — SKTestSession instance methods (clearTransactions(), failTransactionsEnabled = true) throw SKInternalErrorDomain Code=3 "Error saving configuration file". Discussion thread: https://developer.apple.com/forums/thread/808030 The iOS 26.5 Release Notes (https://developer.apple.com/documentation/ios-ipados-release-notes/ios-ipados-26_5-release-notes) under StoreKit Test list this issue as resolved in 26.5: "Fixed: SKTestSession may fail to save its configuration file when invoked outside of an Xcode debug session." However, on the public iOS 26.5 simulator runtime the behavior is unchanged — SKTestSession still hits Code=3 on any mutation, and xcodebuild test from CLI still does not sync the .storekit configuration. The 26.5 fix either did not actually ship, or this report describes a distinct but related issue that the fix did not cover. Impact Any CI/CD pipeline running UI tests for apps with StoreKit subscriptions is broken when targeting an iOS 26.5 simulator. Workarounds are either: Pin CI simulator runtime to iOS 26.1. Manually run the project in Xcode IDE before each test run (impossible headless). Has anyone found a CLI-friendly workaround? Or is there an undocumented xcodebuild flag / simctl command that can trigger the same DVTDevice sync from outside the IDE?
Replies
1
Boosts
0
Views
19
Activity
10h
Non-Consumable IAP stuck in ‘Developer Action Required’ – cannot link to version page
My Non-Consumable IAP was rejected with Guideline 3.1.1 and now has status ‘Developer Action Required’. The problem: On the version page in App Store Connect, the ‘In-App Purchases and Subscriptions’ section does not appear at the bottom. I cannot link the IAP to a new version submission. Every time I submit a new binary, Apple approves the app version but rejects the IAP afterward — even though I have no way to attach it to the version in the first place. This seems to be a circular issue: the IAP doesn’t appear on the version page because of its current status, but the only way to fix the status is to submit it with a new version. Has anyone experienced this and found a solution? Any help appreciated!​​​​​​​​​​​​​​​​
Replies
0
Boosts
0
Views
19
Activity
12h
"Clean Build Folder…" vs "Clean Build Folder Immediately"?
Xcode 26 (and previous versions) have these options: "Clean Build Folder…" vs "Clean Build Folder Immediately" (if you hold the option key). I can't tell how they're different. The ellipsis traditionally means you're going to get a dialog you have to address before the command will execute, but that doesn’t happen. Both seem to just delete files in the build folder.
Replies
0
Boosts
0
Views
43
Activity
15h
Apple Developer Program Enrollment Blocked
I've been unable to complete my Apple Developer Program enrollment for several months now. The process fails with the generic error: "Your enrollment in the Apple Developer Program could not be completed at this time." I've contacted Developer Support multiple times, but have either received no response or only boilerplate replies that restate the error without any explanation. No specific reason for the block has ever been provided. Enrollment ID: 3FUHF37838
Replies
0
Boosts
0
Views
76
Activity
21h
M4 Mac Mini: Xcode generates private keys with wrong label - codesigning impossible
M4 Mac Mini: Xcode generates private keys with wrong label - codesigning impossible Background This is a follow up to my November 2024 thread "Keychain issues after installing backup on new Mac" which was closed because I had a temporary workaround. That workaround using my wife's MacBook Air for signing is not sustainable. I used AI assistance to determine the root cause. My DTS case 102877839447 is open but has not yet been forwarded to a DTS engineer. Environment Mac Mini M4, macOS 15.4.1 (Build 25E253) Xcode 26.4.1 (17E202) Team ID: Q23726668V (Computerade Products) Working comparison machine: MacBook Air, macOS 15.3 Precise Bug — Reproducible Every Time Every time Xcode generates a new certificate and key pair on my Mac Mini: Certificate: Apple Development: Michael Birch (9KD5TCGGHG) ✅ Private key: Apple Development: Michael Birch (Computerade Products) ❌ The key uses the organization name instead of the certificate identifier. They never pair as a valid codesigning identity. security find-identity -v -p codesigning always returns 0 valid identities. Cryptographic Evidence The internal application labels confirm the keys are cryptographically unrelated to their certificates: Key internal application label: 53C26EB056997276B5E938258D00665ACABD1F0F Certificate public key hash: 57cd1af4a9162f26b1a6d750e05a63a2166b75ff These do not match ❌ Confirmed Eliminated As Causes Keychain search list corruption — found and fixed Partition list — set correctly Access control — set to allow all applications Full Disk Access — granted to Xcode Xcode caches and preferences — completely cleared Login keychain — completely reset Orphaned certificates and keys — all removed SIP enabled, system fully up to date Valid P12 Import Also Fails A p12 exported from the working MacBook Air and cryptographically verified as a matched pair also fails on the Mac Mini: security import returns MAC verification failed Keychain Access import returns OSStatus -2 Importing certificate and key separately as PEM files succeeds but they are not recognized as a valid identity pair despite matching application labels A3F3F193B7896DA9055353F59AB450778CB09AE7 Question Is there a known issue with M4 Mac Mini keychain infrastructure where private keys are generated with incorrect internal application labels? Is there a lower level diagnostic or fix beyond what the security command provides? The problem is specific to my Mac Mini M4 and persisted thru more than a year of Mac OS and xCode updates.
Replies
0
Boosts
0
Views
21
Activity
22h
Locked Out of Developer Account
I am locked out of my developer account, and was told by Apple Support that I cant reset or unlock it because its not a "real Apple ID", and I just created the login on the Apple Developer page last week, so I cannot access my TestFlights and things in there, and am stuck until I can get back in. When I try and login to Apple Developer, I get an error that says "Check the account information and try again". Then I try and reset, it tells me that there’s an issue with the account, and bounces be between account.apple.com (which doesnt let me log in) and Apple Developer (which doesnt let me log in). Apple Support cant help me, and Apple Developer doesnt have a help line, so they asked me to post here.
Replies
0
Boosts
0
Views
24
Activity
22h
Parallax Previewer v2 crashes in macOS 26.4.1, Tahoe.
I can run v1 of Parallax Previewer just fine, but v2 pops up an error on open. In console I can see a crash log that states that CoreRe.framework is looking for _FigSTSCreate inside the system's MediaToolbox.framework. I guess Tahoe doesn't have that. Is there a new version coming that works on Tahoe? or a workaround? I couldn't find an existing discussion about this. thanks.
Replies
1
Boosts
0
Views
61
Activity
23h
Apple Developer Program Payment Successful but Enrollment Still Pending After 9 Days
Title: Apple Developer Program Payment Successful but Enrollment Still Pending After 9 Days Hello everyone, I’m facing an issue with my Apple Developer Program enrollment and would really appreciate guidance from the community. I purchased the Apple Developer Program on 11 May 2026 and the payment of ₹8700 INR was successfully deducted from my account. The subscription is visible in my Apple ID subscriptions and shows active renewal until May 2027. However, my developer account still shows: “Complete your purchase” / pending enrollment. It has now been 9 days without activation. During this time I have: Created 5 support tickets Sent multiple emails to Apple Developer Support Requested callbacks several times Waited on support calls for long periods Shared payment proof, subscription screenshots, and all requested details A support representative named Connor from Developer Support replied stating that they were unable to confirm any payment attempts from my Apple Account and requested: detailed issue description screenshots error messages steps already taken I responded with all requested information, including screenshots showing: successful payment deduction active Apple subscription until 2027 pending developer enrollment screen The confusing part is that: Apple subscription/billing side confirms the subscription exists payment was successfully deducted subscription is active until 2027 But Developer Support still says they cannot see the payment on their side. After sending all proofs and requested information, I stopped receiving replies and the issue still remains unresolved. At this point I feel stuck between billing support and developer support with no clear resolution path. Has anyone experienced something similar? How long did it take to resolve? Is there any proper escalation path for Apple Developer enrollment/payment verification issues? Any help or suggestions would be greatly appreciated. Thank you.
Replies
2
Boosts
1
Views
111
Activity
1d
Apple Developer Enrollment Still Under Review After 13 Days (Documents Already Submitted)
Hi everyone, I’m currently trying to enroll in the Apple Developer Program (Individual account), but my enrollment has been stuck under review for quite a long time. Timeline: I initially enrolled through the web Apple Support requested additional verification documents I submitted: Government ID Bank statement (proof of address) It has now been 13 days since I submitted the documents The last response from Apple Support was about a week ago saying: “We’re currently reviewing your inquiry” I also noticed that in the Apple Developer app, the “Enroll Now” button is disabled and it says: “Enrollment through the Apple Developer app is not available for this Apple Account.” I have already called support multiple times, but they only tell me that the case is still under review. Has anyone experienced something similar recently? How long did your manual verification take? Did your enrollment eventually get approved? Is there anything else I should do besides waiting? Thanks in advance.
Replies
0
Boosts
0
Views
30
Activity
1d
Unable to Complete Apple Developer Enrollment — “Unknown error occurred” after Agreement step
Hello, I’m trying to enroll in the Apple Developer Program, but I’m running into an issue during the payment/enrollment process. Here is my situation: I currently live in New York, NY, USA I am temporarily staying in Uzbekistan My payment card is a USA card The card is linked to my Apple ID My Apple ID region/payment information is set correctly When I try to purchase the annual Apple Developer subscription, everything works until the “Agreement” step. After that, the process does not continue and I receive this error message: “Error in Apple Developer enrollment (Unknown error occurred)” I have already tried: Different browsers Different internet connections Re-signing into my Apple ID Checking payment information Unfortunately, the issue still persists. Has anyone experienced something similar, or does anyone know how this can be resolved? I would really appreciate any help or guidance. Regards!
Replies
1
Boosts
0
Views
44
Activity
1d
CNCopyCurrentNetworkInfo returns SSID on iPhone 12 Pro (iOS 18.6.2) but returns nil on iPhone 13 (iOS 26.4.2)
I need official technical support regarding the CNCopyCurrentNetworkInfo API. My app can successfully get the Wi-Fi SSID on iPhone 12 Pro (iOS 18.6.2). But on iPhone 13 (iOS 26.4.2), the same code always returns nil and cannot get the Wi-Fi name. I have already enabled: Access WiFi Information capability Location Permission (When in Use) The app is in foreground Here is my code: private func getCurrentWiFiName() -> String? { if let interfaces = CNCopySupportedInterfaces() as? [String] { print("Detected \(interfaces.count) network interfaces") for (index, interface) in interfaces.enumerated() { print("Interface \(index): \(interface)") if let info = CNCopyCurrentNetworkInfo(interface as CFString) as? [String: Any] { print("Interface \(index) info: \(info)") if let ssid = info[kCNNetworkInfoKeySSID as String] as? String { print("Successfully got SSID: \(ssid)") return ssid } } else { print("Failed to get info for interface \(index)") } } } else { print("Failed to get network interfaces") } return nil } My questions: Why does this API work on iOS 18.6.2 but not on iOS 26.4.2? Has Apple restricted or disabled CNCopyCurrentNetworkInfo in iOS 26+? What is the official supported way for normal App Store apps to get Wi-Fi SSID on iOS 26? Thank you for your help.
Replies
0
Boosts
0
Views
12
Activity
1d
Xcode resets commit message when leaving changes editor
After entering a commit message into the commit message field in the Xcode source control changes editor, it will clear any commit message that I entered if I go to another part of Xcode and open a file in the editor and then go back to the changes screen. FB22806896 https://github.com/feedback-assistant/reports/issues/801
Replies
0
Boosts
0
Views
51
Activity
1d
Apple Developer Program enrollment stuck with “Complete your purchase” and “Duplicate order”
Hello, I am trying to enroll in the Apple Developer Program, but my enrollment appears to be stuck. I submitted my latest enrollment order on Wednesday, and today is Monday. My account still shows: “Purchase your membership. To continue your enrollment, complete your purchase now. Your purchase may take up to 48 hours to process.” However, my card has not been charged, and my membership is still not active. I previously canceled an earlier enrollment order and created a new one, but I also received a “Duplicate order” error. Now I am not sure whether there is a pending order, a duplicate order, or a stuck payment state on my account. I contacted Apple Developer Support by email and also requested a phone callback. I waited around 90 minutes on the first call without reaching an agent, then received another callback and waited again for more than 40 minutes without anyone answering. My card works normally for international online payments. Also, when I enter the card details, I am not redirected to any payment confirmation or 3D Secure page, and I am not asked for CVV. The order just goes into processing. Has anyone experienced the same issue with Apple Developer Program enrollment? How did you resolve the stuck “Complete your purchase” / “Duplicate order” state? Any advice would be appreciated. I can provide my Enrollment ID privately to Apple Support if needed.
Replies
0
Boosts
0
Views
81
Activity
1d