Posts under Developer Tools & Services topic

Post

Replies

Boosts

Views

Created

XCode 26 - xcodebuild command hangs on XCFail
On XCode 26.x, calling XCFail with continueAfterFailure set to false causes xcodebuild command to hang indefinitely if the XCUIApplication object is stored outside the test method. Create a new template iOS App project with UI tests Add XCFail(...) to a UI test test-case Set the XCUIApplication in self.app (avoiding this fixes the hang) Run tests with xcodebuild test The terminal hangs forever Reproduction example import XCTest final class TestAppUITests: XCTestCase { var app: XCUIApplication? = nil override func setUpWithError() throws { continueAfterFailure = false } override func tearDownWithError() throws { app?.terminate() } @MainActor func testExample() throws { let app = XCUIApplication() self.app = app // <- HERE this causes the problem app.launch() XCTFail() } } Reproduction environment macOS Sequoia 15.7.3 Tested XCode 26.3 and XCode 26.2 have the hang Tested XCode 16.4 does work as expected XCode 16.4 The issue does not happen on XCode 16.4, and is likely introduced in XCode 26. Related threads: https://developer.apple.com/forums/thread/809989 https://developer.apple.com/forums/thread/793307 Work-around Do not store XCUIApplication in the XCTestCase instance, maintain it scoped to the test methods.
3
0
122
1w
Apple Developer Program (I NEED HELP)
Hello i ordered on Apple Developer Program on 26 Feb. I got an Email ( Thank you for your order. Here's a summary of your order request, which will be processed within 2 business days) but its been 2 weeks already and no reply. I opened 2 support cases already thru support from the apple developer support site and no answer either . I dont know what else to do, i dont want to have to dispute thru my bank because i want to be an apple developer, but im losing hope at this point. Please help me to activate my account
0
0
40
1w
Need help updating contact information in Apple Developer Program enrollment
Hello, I recently submitted an enrollment request for the Apple Developer Program as an organization. After submitting the request, I realized that I entered incorrect contact information for the person authorized to confirm my authority to enroll the organization. I would like to update the email address for this contact. I already contacted Apple Developer Support by email but have not received a response yet. Is there a way to update this information while the enrollment is still under review? Or should I cancel the request and submit a new one? Any guidance would be greatly appreciated. Thank you.
1
0
112
1w
Apple Developer Program enrollment stuck on "Pending" for a week
Hi, I’m trying to enroll in the Apple Developer Program as an Individual. I attempted the payment several times, but the system says the purchase is already in the system. Under my profile the status shows “Pending”, and the payment has still not been charged from my bank account. It has been about one week since I started the enrollment, and the status hasn’t changed. I also contacted Apple Developer Support, but it has been 4 days and I haven’t received any response yet. Is this normal? Has anyone experienced a similar delay during enrollment? Thanks.
0
0
56
1w
Apple Developer Program - Payment button freezes during enrollment - Enrollment ID: AJ78LF239A
Hi Apple Developer Support Team, I need urgent assistance with my Apple Developer Program enrollment. My details: Enrollment ID: AJ78LF239A Support Case: 102840241902 (opened 4 days ago, no response yet) Issue: I have completed all enrollment steps and entered my payment information correctly. When I click the "Continue" button to finalize the payment, the page freezes completely — no error message, no confirmation, nothing happens. Steps already taken: Confirmed with my bank that the card supports international purchases Removed and re-added the card in Apple ID settings Tried multiple times on different days and browsers Sent email to Apple Developer support (devprograms) Opened support case 102840241902 with no response This is blocking my app from being published on the App Store. I kindly request that someone manually process the payment or provide an alternative method to complete enrollment. Thank you.
2
1
50
1w
Issues creating my Apple Account for the Developer Program because of email
I just started at a new company and I've been invited to access their Apple Developer Program. When I click the invite in the link I'm directed to a "Create Your Apple Account" page where I'm prompted to provide my email address. When I put my work email I receive an error saying that my Apple Account cannot end in the domain and to choose a different email address. When I try to use my personal Gmail, it says my email address is not available and to choose a different address. Even my iCloud email isn't allowed. I'm not sure what else to do to gain access.
0
0
35
1w
Xcode Source Control pull/push hangs indefinitely, terminal Git works normally After Tahoe 26.3 (25D125) Update
Device Details: MBP M2 Pro AND MBP M3 Pro macOS 26.3 (25D125) Xcode Version 26.3, 26.2, 26.1 (I reinstalled all 3 of these after the macOS update) BUG: Xcode hangs indefinitely when performing Source Control operations (Pull or Push) on a Git repository that uses SSH authentication. The same repository works correctly when performing the equivalent Git operations from the Terminal using the Git CLI. The issue appears to be specific to Xcode’s internal Source Control integration. When the operation is triggered from Xcode, the UI shows a spinning progress indicator and never completes. Terminal Git commands (git fetch, git pull, git push) complete normally using the same SSH key and repository. A hang sample taken during the issue shows the Xcode main thread blocked in Source Control authentication and fingerprint handling code paths, including: IDESourceControlUIHandler IDESourceControlFingerprintManager handleAuthenticationFailure showFingerprintAlertOnWindow This suggests Xcode may be waiting on a Source Control authentication or host fingerprint UI flow that never resolves. SSH connectivity itself is functioning correctly: ssh -T git@bitbucket.org and ssh -T git@github.com both authenticate successfully. git ls-remote, git fetch, git pull, and git push all work correctly from Terminal. No Source Control accounts are configured in Xcode Preferences. Authentication relies entirely on SSH keys. Steps to Reproduce Configure an SSH key for Git access (e.g., Bitbucket or GitHub) and confirm it works via Terminal. Clone or open an existing Git repository that uses SSH (git@host:repo.git). Open the project/workspace in Xcode. In Xcode, attempt a Source Control operation such as: Source Control → Pull Source Control → Push Observe that Xcode displays a spinning progress indicator and does not complete the operation. Logs available on this Feedback Assist ID: FB22146913
0
5
99
1w
Xcode 26.3 Claude Agent — 401 Invalid Bearer Token on Intel Mac (FB22141224)
I've been investigating a persistent 401 Invalid Bearer Token error with Claude Agent in Xcode 26.3 on an Intel Core i9 Mac and wanted to share my findings here in case others are affected. ENVIRONMENT Hardware: Intel Core i9 (x86_64) Xcode: 26.3 (17C529) macOS: 26.3 (25D125) THE ISSUE Claude Agent fails with "Failed to authenticate. API Error: 401 - Invalid bearer token" on every prompt, despite the account showing as Signed In under Settings → Intelligence. The error persists after signing out and back in, and the token is confirmed valid and unexpired in Keychain. WHAT WORKS Claude Code in Terminal works perfectly on the same machine with the same credentials The basic Claude Sonnet 4.5 coding assistant in Xcode works fine Only Claude Agent is affected ROOT CAUSE HYPOTHESIS Xcode appears to be installing an ARM64 Claude binary on Intel Macs silently, with no warning or fallback. This binary likely fails to execute on x86_64 hardware and that failure is being misreported upstream as a 401 authentication error — which is why the error has nothing to do with the actual credentials. APPLE'S RESPONSE Feedback report FB22141224 was closed as 'Works as currently designed' with the explanation that Claude Agent requires the Neural Engine found on Apple Silicon. However, Claude Agent calls Anthropic's remote API over the network and performs no on-device AI processing — the Neural Engine is not involved. The fact that Claude Code works fine on this same Intel Mac with the same credentials demonstrates this clearly. WORKAROUND Using an Anthropic API key instead of OAuth resolves the issue but requires additional paid billing outside of an existing Claude.ai subscription. Has anyone else experienced this on either Intel or Apple Silicon? I'd be particularly interested to hear if Apple Silicon users are also affected, as the Developer Forums suggest this may not be limited to Intel Macs (thread/816369). Any input from Apple DTS engineers would be greatly appreciated.
0
0
54
1w
Apple Developer Program Enrollment Stuck for Over 2 Weeks
Hello, I enrolled in the Apple Developer Program and placed the $99 order. Shortly after, I received the email saying: “Thank you for your order. Your order request will be processed within 2 business days.” However, it has now been over two weeks and my membership has still not been activated. I also contacted Apple Developer Support about a week ago through the contact form, but unfortunately I have not received any reply so far. When I visit developer.apple.com, I still see the page prompting me to complete or place the order, even though I already placed it and received the confirmation email. Could someone from Apple please check the status of my enrollment or advise what I should do next? Thank you.
1
1
79
1w
Apple Developer Program Enrollment Stuck for Over 2 Weeks
Hello, I enrolled in the Apple Developer Program and placed the $99 order. Shortly after, I received the email saying: “Thank you for your order. Your order request will be processed within 2 business days.” However, it has now been over two weeks and my membership has still not been activated. I also contacted Apple Developer Support about a week ago through the contact form, but unfortunately I have not received any reply so far. When I visit developer.apple.com, I still see the page prompting me to complete or place the order, even though I already placed it and received the confirmation email. Could someone from Apple please check the status of my enrollment or advise what I should do next? Thank you.
0
0
19
1w
New developer program membership application stuck in review for more than a month now
I have a new startup in Delaware of US. I created a new apple account with my company email and i applied for the developer membership as a company. My Enrollment Id is 5XVYK3UJL8 . I applied in early february and after it was stuck for 5 days, i contacted customer care. I was told that I did not have a company website and the link had a placeholder page so they withdrew my application. Then I created a company website and submitted another application. This was around 8th of February and we are still stuck in review. I have contacted apple customer care about 8 times and everytime they ask me to upload information about myself such as my employee badge ID, or employment letter, etc - since im the sole director of my new startup, I do not have any of these but I gave them my company incorporation documents which has my name, and my passport (Im not a US citizen). Now when Im contacting customer care, im not even getting a response. My whole team is frustrated and in the dark. And I do not know what to do. A lot of riding on our team being able to run beta tests using testflight but we have no help from apple. Can someone guide me here?
1
0
75
1w
team members
I currently have my own individual App Store Connect and Apple Developer distributor account registered with the email address m*******@*mail.com. For one of my clients, we also created a separate individual App Store Connect and Apple Developer account. I added my account as an Admin to the client’s account. On the App Store Connect side, I can perform all operations without any issues, such as managing the app, handling TestFlight, and submitting new versions. However, when I access the Apple Developer portal, I cannot see or manage the accounts I am responsible for. For example, I cannot view information such as the Team ID, certificates, provisioning profiles, or other developer settings. To work around this issue, I created a new Apple Developer membership using a different email address. However, when I logged in with that account, I was still unable to view the Team ID or other developer-related settings. My question is: Has the system always worked this way, where App Store Connect and Apple Developer access are managed separately? Or could this be an unnoticed authorization or configuration issue? I would appreciate your clarification on this matter.
0
0
38
1w
XCode 26 - xcodebuild command hangs on XCFail
On XCode 26.x, calling XCFail with continueAfterFailure set to false causes xcodebuild command to hang indefinitely if the XCUIApplication object is stored outside the test method. Create a new template iOS App project with UI tests Add XCFail(...) to a UI test test-case Set the XCUIApplication in self.app (avoiding this fixes the hang) Run tests with xcodebuild test The terminal hangs forever Reproduction example import XCTest final class TestAppUITests: XCTestCase { var app: XCUIApplication? = nil override func setUpWithError() throws { continueAfterFailure = false } override func tearDownWithError() throws { app?.terminate() } @MainActor func testExample() throws { let app = XCUIApplication() self.app = app // <- HERE this causes the problem app.launch() XCTFail() } } Reproduction environment macOS Sequoia 15.7.3 Tested XCode 26.3 and XCode 26.2 have the hang Tested XCode 16.4 does work as expected XCode 16.4 The issue does not happen on XCode 16.4, and is likely introduced in XCode 26. Related threads: https://developer.apple.com/forums/thread/809989 https://developer.apple.com/forums/thread/793307 Work-around Do not store XCUIApplication in the XCTestCase instance, maintain it scoped to the test methods.
Replies
3
Boosts
0
Views
122
Activity
1w
Apple Developer Program (I NEED HELP)
Hello i ordered on Apple Developer Program on 26 Feb. I got an Email ( Thank you for your order. Here's a summary of your order request, which will be processed within 2 business days) but its been 2 weeks already and no reply. I opened 2 support cases already thru support from the apple developer support site and no answer either . I dont know what else to do, i dont want to have to dispute thru my bank because i want to be an apple developer, but im losing hope at this point. Please help me to activate my account
Replies
0
Boosts
0
Views
40
Activity
1w
Need help updating contact information in Apple Developer Program enrollment
Hello, I recently submitted an enrollment request for the Apple Developer Program as an organization. After submitting the request, I realized that I entered incorrect contact information for the person authorized to confirm my authority to enroll the organization. I would like to update the email address for this contact. I already contacted Apple Developer Support by email but have not received a response yet. Is there a way to update this information while the enrollment is still under review? Or should I cancel the request and submit a new one? Any guidance would be greatly appreciated. Thank you.
Replies
1
Boosts
0
Views
112
Activity
1w
Apple Dev payment issue
Hello guys. I made a payment for developer program. 100 dollars taken, Apple dropped a letter about the invoice number, the order, everything seems to be fine. But website cannot find this order. Also my account in Apple Dev doesn’t see any purchase and asks to pay again. What i have to do in this situation?
Replies
2
Boosts
0
Views
159
Activity
1w
Apple Developer Program enrollment stuck on "Pending" for a week
Hi, I’m trying to enroll in the Apple Developer Program as an Individual. I attempted the payment several times, but the system says the purchase is already in the system. Under my profile the status shows “Pending”, and the payment has still not been charged from my bank account. It has been about one week since I started the enrollment, and the status hasn’t changed. I also contacted Apple Developer Support, but it has been 4 days and I haven’t received any response yet. Is this normal? Has anyone experienced a similar delay during enrollment? Thanks.
Replies
0
Boosts
0
Views
56
Activity
1w
Apple Developer Program - Payment button freezes during enrollment - Enrollment ID: AJ78LF239A
Hi Apple Developer Support Team, I need urgent assistance with my Apple Developer Program enrollment. My details: Enrollment ID: AJ78LF239A Support Case: 102840241902 (opened 4 days ago, no response yet) Issue: I have completed all enrollment steps and entered my payment information correctly. When I click the "Continue" button to finalize the payment, the page freezes completely — no error message, no confirmation, nothing happens. Steps already taken: Confirmed with my bank that the card supports international purchases Removed and re-added the card in Apple ID settings Tried multiple times on different days and browsers Sent email to Apple Developer support (devprograms) Opened support case 102840241902 with no response This is blocking my app from being published on the App Store. I kindly request that someone manually process the payment or provide an alternative method to complete enrollment. Thank you.
Replies
2
Boosts
1
Views
50
Activity
1w
Issues creating my Apple Account for the Developer Program because of email
I just started at a new company and I've been invited to access their Apple Developer Program. When I click the invite in the link I'm directed to a "Create Your Apple Account" page where I'm prompted to provide my email address. When I put my work email I receive an error saying that my Apple Account cannot end in the domain and to choose a different email address. When I try to use my personal Gmail, it says my email address is not available and to choose a different address. Even my iCloud email isn't allowed. I'm not sure what else to do to gain access.
Replies
0
Boosts
0
Views
35
Activity
1w
Xcode Source Control pull/push hangs indefinitely, terminal Git works normally After Tahoe 26.3 (25D125) Update
Device Details: MBP M2 Pro AND MBP M3 Pro macOS 26.3 (25D125) Xcode Version 26.3, 26.2, 26.1 (I reinstalled all 3 of these after the macOS update) BUG: Xcode hangs indefinitely when performing Source Control operations (Pull or Push) on a Git repository that uses SSH authentication. The same repository works correctly when performing the equivalent Git operations from the Terminal using the Git CLI. The issue appears to be specific to Xcode’s internal Source Control integration. When the operation is triggered from Xcode, the UI shows a spinning progress indicator and never completes. Terminal Git commands (git fetch, git pull, git push) complete normally using the same SSH key and repository. A hang sample taken during the issue shows the Xcode main thread blocked in Source Control authentication and fingerprint handling code paths, including: IDESourceControlUIHandler IDESourceControlFingerprintManager handleAuthenticationFailure showFingerprintAlertOnWindow This suggests Xcode may be waiting on a Source Control authentication or host fingerprint UI flow that never resolves. SSH connectivity itself is functioning correctly: ssh -T git@bitbucket.org and ssh -T git@github.com both authenticate successfully. git ls-remote, git fetch, git pull, and git push all work correctly from Terminal. No Source Control accounts are configured in Xcode Preferences. Authentication relies entirely on SSH keys. Steps to Reproduce Configure an SSH key for Git access (e.g., Bitbucket or GitHub) and confirm it works via Terminal. Clone or open an existing Git repository that uses SSH (git@host:repo.git). Open the project/workspace in Xcode. In Xcode, attempt a Source Control operation such as: Source Control → Pull Source Control → Push Observe that Xcode displays a spinning progress indicator and does not complete the operation. Logs available on this Feedback Assist ID: FB22146913
Replies
0
Boosts
5
Views
99
Activity
1w
Xcode 26.3 Claude Agent — 401 Invalid Bearer Token on Intel Mac (FB22141224)
I've been investigating a persistent 401 Invalid Bearer Token error with Claude Agent in Xcode 26.3 on an Intel Core i9 Mac and wanted to share my findings here in case others are affected. ENVIRONMENT Hardware: Intel Core i9 (x86_64) Xcode: 26.3 (17C529) macOS: 26.3 (25D125) THE ISSUE Claude Agent fails with "Failed to authenticate. API Error: 401 - Invalid bearer token" on every prompt, despite the account showing as Signed In under Settings → Intelligence. The error persists after signing out and back in, and the token is confirmed valid and unexpired in Keychain. WHAT WORKS Claude Code in Terminal works perfectly on the same machine with the same credentials The basic Claude Sonnet 4.5 coding assistant in Xcode works fine Only Claude Agent is affected ROOT CAUSE HYPOTHESIS Xcode appears to be installing an ARM64 Claude binary on Intel Macs silently, with no warning or fallback. This binary likely fails to execute on x86_64 hardware and that failure is being misreported upstream as a 401 authentication error — which is why the error has nothing to do with the actual credentials. APPLE'S RESPONSE Feedback report FB22141224 was closed as 'Works as currently designed' with the explanation that Claude Agent requires the Neural Engine found on Apple Silicon. However, Claude Agent calls Anthropic's remote API over the network and performs no on-device AI processing — the Neural Engine is not involved. The fact that Claude Code works fine on this same Intel Mac with the same credentials demonstrates this clearly. WORKAROUND Using an Anthropic API key instead of OAuth resolves the issue but requires additional paid billing outside of an existing Claude.ai subscription. Has anyone else experienced this on either Intel or Apple Silicon? I'd be particularly interested to hear if Apple Silicon users are also affected, as the Developer Forums suggest this may not be limited to Intel Macs (thread/816369). Any input from Apple DTS engineers would be greatly appreciated.
Replies
0
Boosts
0
Views
54
Activity
1w
Payment issue
Hello, I started my Apple Developer enrollment using the Apple Developer app. However, the payment method available on my device cannot be accepted because the billing address is outside the United States. Is it possible to complete the membership purchase through the web instead of the app?
Replies
0
Boosts
0
Views
57
Activity
1w
Xcode help
I’m constantly gettng 47 errors in my code and I’ve tried everything I can think of and can’t find the root problem, please can someone help
Replies
1
Boosts
0
Views
29
Activity
1w
Pending account help please
Hello, my account is pending .i try to contact apple several times with no respond the customer service is terrible.
Replies
0
Boosts
0
Views
27
Activity
1w
Dumb noob question,,
How can i get a simple figma layout with minimal art into xcode
Replies
1
Boosts
0
Views
63
Activity
1w
APP打包时显示证书失效怎么解决
显示为——构建描述签名错误: 签名证书无效。签名证书;不可用于代码签名。它可能已被吊销或过期。、 目前是在Apple Developer 重新创建证书、生成描述文件了(显示的是有效);但是下来出来放进打包里就显示证书失效是什么原因?
Replies
0
Boosts
0
Views
29
Activity
1w
Apple Developer Program Enrollment Stuck for Over 2 Weeks
Hello, I enrolled in the Apple Developer Program and placed the $99 order. Shortly after, I received the email saying: “Thank you for your order. Your order request will be processed within 2 business days.” However, it has now been over two weeks and my membership has still not been activated. I also contacted Apple Developer Support about a week ago through the contact form, but unfortunately I have not received any reply so far. When I visit developer.apple.com, I still see the page prompting me to complete or place the order, even though I already placed it and received the confirmation email. Could someone from Apple please check the status of my enrollment or advise what I should do next? Thank you.
Replies
1
Boosts
1
Views
79
Activity
1w
Apple Developer Program Enrollment Stuck for Over 2 Weeks
Hello, I enrolled in the Apple Developer Program and placed the $99 order. Shortly after, I received the email saying: “Thank you for your order. Your order request will be processed within 2 business days.” However, it has now been over two weeks and my membership has still not been activated. I also contacted Apple Developer Support about a week ago through the contact form, but unfortunately I have not received any reply so far. When I visit developer.apple.com, I still see the page prompting me to complete or place the order, even though I already placed it and received the confirmation email. Could someone from Apple please check the status of my enrollment or advise what I should do next? Thank you.
Replies
0
Boosts
0
Views
19
Activity
1w
Is my account active?
Hello. I have just joined the Apple Developer Program. I have a mobile game that is almost complete that I'd like to add to The App Store. So, how do I know if my Apple Developer Program Account is actually active? I thought they I had to upload ID, but they never asked me for that. It seems like I'm active and approved, but I'm not sure. Thanks.
Replies
1
Boosts
0
Views
50
Activity
1w
New developer program membership application stuck in review for more than a month now
I have a new startup in Delaware of US. I created a new apple account with my company email and i applied for the developer membership as a company. My Enrollment Id is 5XVYK3UJL8 . I applied in early february and after it was stuck for 5 days, i contacted customer care. I was told that I did not have a company website and the link had a placeholder page so they withdrew my application. Then I created a company website and submitted another application. This was around 8th of February and we are still stuck in review. I have contacted apple customer care about 8 times and everytime they ask me to upload information about myself such as my employee badge ID, or employment letter, etc - since im the sole director of my new startup, I do not have any of these but I gave them my company incorporation documents which has my name, and my passport (Im not a US citizen). Now when Im contacting customer care, im not even getting a response. My whole team is frustrated and in the dark. And I do not know what to do. A lot of riding on our team being able to run beta tests using testflight but we have no help from apple. Can someone guide me here?
Replies
1
Boosts
0
Views
75
Activity
1w
team members
I currently have my own individual App Store Connect and Apple Developer distributor account registered with the email address m*******@*mail.com. For one of my clients, we also created a separate individual App Store Connect and Apple Developer account. I added my account as an Admin to the client’s account. On the App Store Connect side, I can perform all operations without any issues, such as managing the app, handling TestFlight, and submitting new versions. However, when I access the Apple Developer portal, I cannot see or manage the accounts I am responsible for. For example, I cannot view information such as the Team ID, certificates, provisioning profiles, or other developer settings. To work around this issue, I created a new Apple Developer membership using a different email address. However, when I logged in with that account, I was still unable to view the Team ID or other developer-related settings. My question is: Has the system always worked this way, where App Store Connect and Apple Developer access are managed separately? Or could this be an unnoticed authorization or configuration issue? I would appreciate your clarification on this matter.
Replies
0
Boosts
0
Views
38
Activity
1w
stop renewal of apple developer account
hello everyone, help me to cancel renewal of my own developer account since my app never gets to be reviewed and i have no money left. how to stop it? i've been trying everything couldnt find the cancel subscription button.
Replies
0
Boosts
0
Views
24
Activity
1w