Posts under Developer Tools & Services topic

Post

Replies

Boosts

Views

Activity

Reoccurring data access prompt issue with Swift Playgrounds 4.6.4 on macOS 26.1
Hello, I am having a recurring issue using Swift Playgrounds version 4.6.4 on macOS 26.1. Upon opening a file and every other time I start typing in the code section I get a prompt, the image below, two or three times. It doesn't matter if I accept or decline all or some of the prompts, as soon as I start typing on another line I get prompted another two or three times for permission. It appears to me that prompt generates every time the preview pane tries to update. Declining the prompt breaks the preview but accepting the prompt only gets you through a single line of code before it appears again. I believe this issue started after I updated to macOS26.1 as I had not encountered it before. I've also opened other files with Swift Playgrounds and encounter the same problem. It could also be unrelated to the update and could be an issue with some permission setting somewhere, however, I have been unable to find what or where it could be. Is anyone else experiencing this? Thank you for your time :)
28
19
2.6k
6d
Enrollment Failure – Unable to Complete Apple Developer Program Registration
Dear Apple Developer Support Team, I am writing to request assistance regarding an issue I am experiencing while attempting to enroll in the Apple Developer Program. Below are the details of the problem: The enrollment process fails before reaching the payment page. The message displayed is: “Your enrollment could not be completed.” The error appears prior to any payment attempt. Two-factor authentication is enabled on the Apple ID. Email address and phone number are verified. The Apple ID being used for enrollment is different from our existing Enterprise account. We have attempted enrollment using: A U.S. address A Indian phone number A clean browser session (logged out of other Apple accounts) The existing Apple Enterprise account under our organization is active and functioning without issues. This new enrollment attempt is for a separate Developer Program account using a different email address. We have tried multiple browsers and networks, but the issue persists and prevents us from proceeding to payment. Could you please check whether: The Apple ID is restricted or flagged in your system? There are any verification issues preventing enrollment? Any additional steps are required from our side to complete registration? Kindly let us know how we can resolve this and proceed with successful enrollment. Thank you for your assistance.
2
0
369
1w
Clarification regarding Apple Developer Program enrollment status
Hello Apple Developer Support Team, I recently completed my Apple Developer Program enrollment through the website, and both the identity verification and payment steps were successfully completed. However, when I log in to my account, the website still displays the message “Complete Your Purchase,” and my enrollment status remains listed as Pending. It appears as though the system is prompting me to start the enrollment process again. Could you please review my account and confirm the current status of my enrollment? Thank you for your time and assistance. Kind regards,
4
3
105
1w
No responds on enrollment status.
Hi I'm new here and trying so enroll in apple developers program and so I was met with problems like unable to create apple account, failed payment on 7 cards, 3 support tickets with no responds, and now I have enrolled in apple developers program (sort of, they just took payment and no news after that. Now running 3 days since payment. Is this some sort of a hazing ceremony or a sick joke apple is doing to new developers? or is there a secret email I can contact to get some decent support?
2
1
635
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
Cannot access my developer account because of 'Too many verification codes have been sent. Enter the last code you received or try again later.'
I have been trying to get into my account for several days now and I have tried everything. First of you cannot get support because you need to be logged in so had to make another account to be able to post this. And even then the support is not working. Send an email a while ago and tried the call option and I have gotten no response from both. I was supposed to launch my app last week and I have just not be able to log into my account. I keep getting the 'Too many verification codes have been sent. Enter the last code you received or try again later.' I didn't even do that, I just tried to log in and had that there. I have waited days and it's still there. I have tried changing the number for which I waited a day and now it's told me to wait another 6 days. This has caused so many problem and the lack of support is unbelievable. Can anyone please help me get into my account or advise on what I can do ASAP. Thanks, Usama
1
0
110
1w
No responds on enrollment status.
Hi I'm new here and trying so enroll in apple developers program and so I was met with problems like unable to create apple account, failed payment on 7 cards, 3 support tickets with no responds, and now I have enrolled in apple developers program (sort of, they just took payment and no news after that now running 3 days since payment. Is this some sort of a hazing ceremony or a sick joke apple is doing do new developers? or is there a secret email I can contact to get some decent support?
0
0
563
1w
Apple Support are you even here?
I’m creating a new post because the situation has gone far beyond reasonable. My Apple Developer Program enrollment has been stuck in “Pending” status for almost a month. During this time, I have sent around 10 emails to Apple Developer Program Support. Result: ZERO REPLISES. NO EXPLANATIONS NO UPDATES. NO HELP. If you are experiencing the same issue — or have faced it before — please leave a comment or upvote this thread so it gets visibility. At this point, this seems to be the only way to get Apple’s attention. Apple, this situation needs to be addressed.
6
9
496
1w
Xcode 26.3 incompatible with FireBase and WeTest?
Popular automated testing systems like FireBase [1] and WeTest [2] expect the uploaded test to include the Debug-iphoneos directory generated by Xcode. However, in all of our builds on Xcode 26.3, this folder is created but remains empty. There are some other folders with the same name in subdirectories, but these only contain intermediate build files. Now we're looking for configuration or settings in Xcode to restore the original behavior, where the top-level Debug-iphoneos directory gets populated with a complete image of the test target, include the binary and resource files. Any suggestions would be much appreciated! [1] https://firebase.google.com/docs/test-lab/ios/run-xctest [2] https://www.wetest.net/documents/detail/automation/d8yaA7yz
0
0
32
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.
3
0
119
1w
Join WWDC in Apple Park
Thank you very much for choosing me to go to Apple Park to participate in WWDC. I am looking forward to participating in this event. May I ask you some questions? I am a young Apple Developer Program from China. And I am the winner of the Swift Student Challenge in 2024. I am over 13 years old. I used my own Developer account, not my parents', to apply for WWDC activities and all the events I carry out. Since I am under 18 years old, my parents may need to sign the Special Event Parental Permission Statement. Where can I find it? My parents will sign it. At the same time, I noticed that the bottom of the RSVP form requires me to guarantee that I am at least 18 years old, but I am not. And I used my own account to apply for WWDC, so I want to know how to meet this need? I need a non-immigrant visa to go to the United States. So, I need to prove to the visa officer that I have received an invitation from Apple. Could Apple send me a formal invitation letter to prove that I have received an invitation from Apple? At the same time, as a teenager, I need to go to the United States with my mother, so can you mention the information of my guardian (my mother) in the invitation letter? Ps: I am very independent. I am well aware that the number of people in WWDC is limited. My mother will not enter the venue unless otherwise required.
2
0
242
1w
Apple: The Tech Giant Crushing Developers with "Technical Incompetence" and Silent Support
While Apple prides itself on providing the ultimate experience for both users and developers, many find themselves trapped in a technical "black hole" with no exit. The issue isn't just the complexity of the systems, but the sheer inability of these systems to handle a developer’s most basic need: accessing their account to manage their business. The Dead-End Loop: "Too Many Verification Codes" The disaster begins with a seemingly harmless but business-destroying message: "You have sent too many verification codes. Please try again later." At this point, Apple’s system—with its supposed "intelligence"—decides to freeze your account for two days or more. You wait patiently, return after 48 hours to log in, only to be met by the exact same message. This isn’t "security"; it’s primitive technical failure. How can a company of Apple’s magnitude fail to program a smart system that distinguishes between a breach attempt and a developer trying to access their work tools? Persistent failure for over a month without a root solution raises serious questions about the software infrastructure of this giant. Customer Support: Total Absence and Disregard for Time The greatest agony lies in the "Non-Response." You email technical support, and the answer either arrives a month later—long after the damage is done—or never arrives at all. In the business world, every second translates to money and reputation, but in Apple’s dictionary, it seems a developer’s time has no value. It is ironic that a trillion-dollar company fails to provide a human support agent who can, with a single click, verify a developer's identity and bypass a stuck OTP. This blatant lack of effective human support is the pinnacle of negligence toward the developer community—the very backbone of their App Store. Paralyzed Apps and Users Left Stranded Behind this "technical incompetence" lies a painful reality: an app with technical bugs requiring urgent fixes, thousands of users waiting for an update that never comes, and business operations completely halted. The developer stands handcuffed, unable to push a single update because the "fortress gates" are locked due to a glitch in sending a text message! How has Apple managed to reach this size while operating with such technical bureaucracy? The answer may lie in its market monopoly, which has made it indifferent to the collateral damage inflicted on startups by its software errors and the absence of its support staff. Final Word What is happening is not just a passing technical glitch; it is an "administrative catastrophe" wrapped in technology. Apple must realize that its continued success depends not just on selling devices, but on respecting the minds and time of the developers who build its ecosystem. We aren’t asking for miracles; we are simply asking for a login system that works and human beings who respond to emails before it’s too late.
0
1
51
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
Developer app on the Mac doesn't play videos in full screen
Hi, Problem When playing videos on the Developer app on the Mac, there is no full screen button for the video. So it is not possible to play the video in full screen. Note I am not referring to the app going into full screen, the issue is with there is no option to play the video in full screen. Environment OS: macOS 26.2 (25C56) Developer app: Version 10.8.3 (1083.3.1) Feedback FB21343934 Recording Question Are others also facing this issue? Is there a workaround? Suggestion This seems to be recurring problem that seems get broken with app / OS releases. Please write some UI tests to ensure the full screen button is present. Would really appreciate if this gets fixed.
7
5
372
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
111
1w
Is it possible to download or copy the iOS SDK for Xcode 26.1 using command-line tools? If so, how?
I have Xcode 26.1.1 (installed on a Mac Mini with Sequoia 15.7.2), which was installed from the Universal .xip file available from the Apple Developer site. This file is 2.7Gb. When Xcode is run, there is a menu item at Settings -> Components, and the top section "Platform Support" includes an option to "Get" the iOS SDK, which is an additional 10.3Gb download.[1][2] I would like to either use command-line tools to obtain this iOS SDK component, or find where the downloaded package or its contents are installed on this Mac. This Apple Documentation some examples of using command-line tools to download components for Xcode. However, there is no specific documentation on how to separately download the iOS SDK. It seems that if possible, it could be done with "xcodebuild -downloadComponent", however I have tried a number of likely component names (ios, ios_sdk, ios26.1, ios_sdk26.1, iphoneos, iphoneos_sdk, iphoneos_sdk26.1), and none are valid. Does anyone know either where the SDK download can be found, or how to download it using command-line tools? Background: I require this as I am managing a fleet of Mac Minis located in a data centre (used for iOS/Android builds), and Internet access is restricted - any action requiring Internet access needs the Mac to be removed from the machine room racks and taken to a build room, then connected to a mobile hotspot or similar. This access is slow, and the above 10.3Gb download can take over an hour. If I can download the SDK separately, I can distribute it to all of the Macs over the internal network overnight, in advance of visiting the DC for upgrade tasks. [1] Various web sites say that the iOS SDK is "bundled with" Xcode. However, if that's the case a) how is a 10.3Gb download somehow included in a 2.7Gb file? And b) why do I still need to "Get" this component after installing Xcode from the 2.7Gb file? [2] Note that I am not looking for the iOS Simulator, I have already downloaded the iOS 26.1 version of this. I am specifically looking for the iOS SDK as listed under "Platform Support" in the Xcode menu described above.
3
0
89
1w
Reoccurring data access prompt issue with Swift Playgrounds 4.6.4 on macOS 26.1
Hello, I am having a recurring issue using Swift Playgrounds version 4.6.4 on macOS 26.1. Upon opening a file and every other time I start typing in the code section I get a prompt, the image below, two or three times. It doesn't matter if I accept or decline all or some of the prompts, as soon as I start typing on another line I get prompted another two or three times for permission. It appears to me that prompt generates every time the preview pane tries to update. Declining the prompt breaks the preview but accepting the prompt only gets you through a single line of code before it appears again. I believe this issue started after I updated to macOS26.1 as I had not encountered it before. I've also opened other files with Swift Playgrounds and encounter the same problem. It could also be unrelated to the update and could be an issue with some permission setting somewhere, however, I have been unable to find what or where it could be. Is anyone else experiencing this? Thank you for your time :)
Replies
28
Boosts
19
Views
2.6k
Activity
6d
Enrollment Failure – Unable to Complete Apple Developer Program Registration
Dear Apple Developer Support Team, I am writing to request assistance regarding an issue I am experiencing while attempting to enroll in the Apple Developer Program. Below are the details of the problem: The enrollment process fails before reaching the payment page. The message displayed is: “Your enrollment could not be completed.” The error appears prior to any payment attempt. Two-factor authentication is enabled on the Apple ID. Email address and phone number are verified. The Apple ID being used for enrollment is different from our existing Enterprise account. We have attempted enrollment using: A U.S. address A Indian phone number A clean browser session (logged out of other Apple accounts) The existing Apple Enterprise account under our organization is active and functioning without issues. This new enrollment attempt is for a separate Developer Program account using a different email address. We have tried multiple browsers and networks, but the issue persists and prevents us from proceeding to payment. Could you please check whether: The Apple ID is restricted or flagged in your system? There are any verification issues preventing enrollment? Any additional steps are required from our side to complete registration? Kindly let us know how we can resolve this and proceed with successful enrollment. Thank you for your assistance.
Replies
2
Boosts
0
Views
369
Activity
1w
Clarification regarding Apple Developer Program enrollment status
Hello Apple Developer Support Team, I recently completed my Apple Developer Program enrollment through the website, and both the identity verification and payment steps were successfully completed. However, when I log in to my account, the website still displays the message “Complete Your Purchase,” and my enrollment status remains listed as Pending. It appears as though the system is prompting me to start the enrollment process again. Could you please review my account and confirm the current status of my enrollment? Thank you for your time and assistance. Kind regards,
Replies
4
Boosts
3
Views
105
Activity
1w
No responds on enrollment status.
Hi I'm new here and trying so enroll in apple developers program and so I was met with problems like unable to create apple account, failed payment on 7 cards, 3 support tickets with no responds, and now I have enrolled in apple developers program (sort of, they just took payment and no news after that. Now running 3 days since payment. Is this some sort of a hazing ceremony or a sick joke apple is doing to new developers? or is there a secret email I can contact to get some decent support?
Replies
2
Boosts
1
Views
635
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
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
157
Activity
1w
Assistance Needed with Apple Developer Account Payment Issue
Hello Developers, I need your help. I'm trying to pay for my Apple Developer Account, but it's being declined saying 'Your Purchase Could Not Be Completed'. I need to know where the problem is so I can successfully make the payment.
Replies
2
Boosts
0
Views
439
Activity
1w
Can’t update developer info
Please help! I can’t update my developer info and when I renew my membership I’m taken to an account that I had in Europe which I no longer use or have money tied to. I want to switch my account to USA and use a usa account
Replies
0
Boosts
0
Views
23
Activity
1w
Cannot access my developer account because of 'Too many verification codes have been sent. Enter the last code you received or try again later.'
I have been trying to get into my account for several days now and I have tried everything. First of you cannot get support because you need to be logged in so had to make another account to be able to post this. And even then the support is not working. Send an email a while ago and tried the call option and I have gotten no response from both. I was supposed to launch my app last week and I have just not be able to log into my account. I keep getting the 'Too many verification codes have been sent. Enter the last code you received or try again later.' I didn't even do that, I just tried to log in and had that there. I have waited days and it's still there. I have tried changing the number for which I waited a day and now it's told me to wait another 6 days. This has caused so many problem and the lack of support is unbelievable. Can anyone please help me get into my account or advise on what I can do ASAP. Thanks, Usama
Replies
1
Boosts
0
Views
110
Activity
1w
No responds on enrollment status.
Hi I'm new here and trying so enroll in apple developers program and so I was met with problems like unable to create apple account, failed payment on 7 cards, 3 support tickets with no responds, and now I have enrolled in apple developers program (sort of, they just took payment and no news after that now running 3 days since payment. Is this some sort of a hazing ceremony or a sick joke apple is doing do new developers? or is there a secret email I can contact to get some decent support?
Replies
0
Boosts
0
Views
563
Activity
1w
Apple Support are you even here?
I’m creating a new post because the situation has gone far beyond reasonable. My Apple Developer Program enrollment has been stuck in “Pending” status for almost a month. During this time, I have sent around 10 emails to Apple Developer Program Support. Result: ZERO REPLISES. NO EXPLANATIONS NO UPDATES. NO HELP. If you are experiencing the same issue — or have faced it before — please leave a comment or upvote this thread so it gets visibility. At this point, this seems to be the only way to get Apple’s attention. Apple, this situation needs to be addressed.
Replies
6
Boosts
9
Views
496
Activity
1w
Xcode 26.3 incompatible with FireBase and WeTest?
Popular automated testing systems like FireBase [1] and WeTest [2] expect the uploaded test to include the Debug-iphoneos directory generated by Xcode. However, in all of our builds on Xcode 26.3, this folder is created but remains empty. There are some other folders with the same name in subdirectories, but these only contain intermediate build files. Now we're looking for configuration or settings in Xcode to restore the original behavior, where the top-level Debug-iphoneos directory gets populated with a complete image of the test target, include the binary and resource files. Any suggestions would be much appreciated! [1] https://firebase.google.com/docs/test-lab/ios/run-xctest [2] https://www.wetest.net/documents/detail/automation/d8yaA7yz
Replies
0
Boosts
0
Views
32
Activity
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
119
Activity
1w
Join WWDC in Apple Park
Thank you very much for choosing me to go to Apple Park to participate in WWDC. I am looking forward to participating in this event. May I ask you some questions? I am a young Apple Developer Program from China. And I am the winner of the Swift Student Challenge in 2024. I am over 13 years old. I used my own Developer account, not my parents', to apply for WWDC activities and all the events I carry out. Since I am under 18 years old, my parents may need to sign the Special Event Parental Permission Statement. Where can I find it? My parents will sign it. At the same time, I noticed that the bottom of the RSVP form requires me to guarantee that I am at least 18 years old, but I am not. And I used my own account to apply for WWDC, so I want to know how to meet this need? I need a non-immigrant visa to go to the United States. So, I need to prove to the visa officer that I have received an invitation from Apple. Could Apple send me a formal invitation letter to prove that I have received an invitation from Apple? At the same time, as a teenager, I need to go to the United States with my mother, so can you mention the information of my guardian (my mother) in the invitation letter? Ps: I am very independent. I am well aware that the number of people in WWDC is limited. My mother will not enter the venue unless otherwise required.
Replies
2
Boosts
0
Views
242
Activity
1w
Apple: The Tech Giant Crushing Developers with "Technical Incompetence" and Silent Support
While Apple prides itself on providing the ultimate experience for both users and developers, many find themselves trapped in a technical "black hole" with no exit. The issue isn't just the complexity of the systems, but the sheer inability of these systems to handle a developer’s most basic need: accessing their account to manage their business. The Dead-End Loop: "Too Many Verification Codes" The disaster begins with a seemingly harmless but business-destroying message: "You have sent too many verification codes. Please try again later." At this point, Apple’s system—with its supposed "intelligence"—decides to freeze your account for two days or more. You wait patiently, return after 48 hours to log in, only to be met by the exact same message. This isn’t "security"; it’s primitive technical failure. How can a company of Apple’s magnitude fail to program a smart system that distinguishes between a breach attempt and a developer trying to access their work tools? Persistent failure for over a month without a root solution raises serious questions about the software infrastructure of this giant. Customer Support: Total Absence and Disregard for Time The greatest agony lies in the "Non-Response." You email technical support, and the answer either arrives a month later—long after the damage is done—or never arrives at all. In the business world, every second translates to money and reputation, but in Apple’s dictionary, it seems a developer’s time has no value. It is ironic that a trillion-dollar company fails to provide a human support agent who can, with a single click, verify a developer's identity and bypass a stuck OTP. This blatant lack of effective human support is the pinnacle of negligence toward the developer community—the very backbone of their App Store. Paralyzed Apps and Users Left Stranded Behind this "technical incompetence" lies a painful reality: an app with technical bugs requiring urgent fixes, thousands of users waiting for an update that never comes, and business operations completely halted. The developer stands handcuffed, unable to push a single update because the "fortress gates" are locked due to a glitch in sending a text message! How has Apple managed to reach this size while operating with such technical bureaucracy? The answer may lie in its market monopoly, which has made it indifferent to the collateral damage inflicted on startups by its software errors and the absence of its support staff. Final Word What is happening is not just a passing technical glitch; it is an "administrative catastrophe" wrapped in technology. Apple must realize that its continued success depends not just on selling devices, but on respecting the minds and time of the developers who build its ecosystem. We aren’t asking for miracles; we are simply asking for a login system that works and human beings who respond to emails before it’s too late.
Replies
0
Boosts
1
Views
51
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
Developer app on the Mac doesn't play videos in full screen
Hi, Problem When playing videos on the Developer app on the Mac, there is no full screen button for the video. So it is not possible to play the video in full screen. Note I am not referring to the app going into full screen, the issue is with there is no option to play the video in full screen. Environment OS: macOS 26.2 (25C56) Developer app: Version 10.8.3 (1083.3.1) Feedback FB21343934 Recording Question Are others also facing this issue? Is there a workaround? Suggestion This seems to be recurring problem that seems get broken with app / OS releases. Please write some UI tests to ensure the full screen button is present. Would really appreciate if this gets fixed.
Replies
7
Boosts
5
Views
372
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
111
Activity
1w
Xcode 26.4 Beta 2 - Missing Capability, Family Controls App & Website Usage
Hi One of the new Family Control API's requires the new "Family Controls App & Website Usage" capability but it appears to be missing in the latest Xcode beta (26.4 B2). MacOS and iOS all running 26.4 Beta 3. Does anyone know if we have to wait for Xcode 26.4 Beta 3 and it's associated SDK's for this one to become available?
Replies
3
Boosts
2
Views
108
Activity
1w
Is it possible to download or copy the iOS SDK for Xcode 26.1 using command-line tools? If so, how?
I have Xcode 26.1.1 (installed on a Mac Mini with Sequoia 15.7.2), which was installed from the Universal .xip file available from the Apple Developer site. This file is 2.7Gb. When Xcode is run, there is a menu item at Settings -> Components, and the top section "Platform Support" includes an option to "Get" the iOS SDK, which is an additional 10.3Gb download.[1][2] I would like to either use command-line tools to obtain this iOS SDK component, or find where the downloaded package or its contents are installed on this Mac. This Apple Documentation some examples of using command-line tools to download components for Xcode. However, there is no specific documentation on how to separately download the iOS SDK. It seems that if possible, it could be done with "xcodebuild -downloadComponent", however I have tried a number of likely component names (ios, ios_sdk, ios26.1, ios_sdk26.1, iphoneos, iphoneos_sdk, iphoneos_sdk26.1), and none are valid. Does anyone know either where the SDK download can be found, or how to download it using command-line tools? Background: I require this as I am managing a fleet of Mac Minis located in a data centre (used for iOS/Android builds), and Internet access is restricted - any action requiring Internet access needs the Mac to be removed from the machine room racks and taken to a build room, then connected to a mobile hotspot or similar. This access is slow, and the above 10.3Gb download can take over an hour. If I can download the SDK separately, I can distribute it to all of the Macs over the internal network overnight, in advance of visiting the DC for upgrade tasks. [1] Various web sites say that the iOS SDK is "bundled with" Xcode. However, if that's the case a) how is a 10.3Gb download somehow included in a 2.7Gb file? And b) why do I still need to "Get" this component after installing Xcode from the 2.7Gb file? [2] Note that I am not looking for the iOS Simulator, I have already downloaded the iOS 26.1 version of this. I am specifically looking for the iOS SDK as listed under "Platform Support" in the Xcode menu described above.
Replies
3
Boosts
0
Views
89
Activity
1w