Posts under Developer Tools & Services topic

Post

Replies

Boosts

Views

Activity

My application for organization status is taking a very long time to process.
I submitted the application with my DUNS number on May 8, 2026, and today is already May 11, 2026. After submitting the form, it said the process would take about 1 day, but quite a bit of time has already passed and I still have not received organization status. I also have not received any emails from Apple. Could there possibly be some issue that I am not aware of?
0
0
24
2d
Developer program renewal blocked: "This item is currently not available in your country or region" — phone escalations not returned for 3 weeks
Posting here in hope of getting this in front of someone at Apple who can actually look at our account, since three weeks of phone support has produced no follow-up. Setup: Organizational Apple Developer Program membership, active through 2024 Did not renew in 2024 (no apps shipping that year) Same country/region as every prior successful renewal; nothing has changed on our side Have a completed app ready to ship right now Error: During renewal, the payment page returns: "This item is currently not available in your country/region." Reproduced consistently across browsers, networks, and payment methods. What I've tried: Renewing via the existing org account → same error every attempt. Enrolling a new org Developer account → enrollment is auto-cancelled with the message that our organization already has a membership and we must use the existing one. Phoned Apple Developer Program Support 10+ times over the past three weeks. Every call ends with the agent stating the issue requires senior advisor escalation and that I will be contacted by email. No email has ever arrived. What I need: A path to a senior Developer Program Support advisor who can actually look at our case. Happy to share Team ID and Apple ID through any official channel. If anyone from Apple sees this - our case has been open via phone support for three weeks with zero follow-up. Any pointer would be hugely appreciated.
4
0
150
2d
Program Enrollment
Hi everyone, I’m trying to enroll in the Apple Developer Program as an Individual developer in Canada. However, when I try to complete the enrollment, I receive this message: “For one or more reasons, your enrollment in the Apple Developer Program could not be completed.” I have already checked my Apple Account information, including my legal name, country/region, phone number, billing address, payment method, and two-factor authentication. I also tried contacting Apple Developer Support, but I have not received a clear solution yet. Has anyone experienced this issue before? Any advice would be greatly appreciated. Thank you.
1
0
56
2d
Individual → Organization transfer stuck in “Senior Advisor” review (2+ weeks, no contact)
I’m currently blocked on converting my Apple Developer account from Individual to Organization. Case ID: 102876994832 Timeline: February: initiated individual → organization transfer Application stalled with no follow-up link or communication Contacted Apple Support to restart process Case escalated to “Senior Advisor Team” Last 2+ weeks: no contact, no updates, no callback Current Status: Marked as “under review by Senior Advisor Team” Apple Support is unable to transfer calls or provide updates Impact: This is blocking organizational setup and release workflows We have multiple apps waiting to go to TestFlight for QA We wanted to use iOS before Android but have been forced to test UX w/ Android users Request: Confirmation of current enrollment status Estimated timeline or SLA for resolution Direct escalation or re-assignment if the case is stalled Has anyone from Apple Developer Program team been able to help move cases like this forward?
1
0
57
2d
Cannot enroll to the Apple Developer program
I'm unable to complete Apple Developer Program enrollment and would appreciate guidance on the actual cause. Environment: Region: Kazakhstan Enrollment type: Individual Browser/device tried: Safari on macOS , Apple Developer app on macOS, iphone, Chrome on macOS Apple ID: 2FA enabled, in good standing, name matches government ID What happens: At the terms agreements step, I receive the following error verbatim: Cannot enroll to the Apple Developer program What do I do? I've contacted Developer Program Support via the contact form several times, but no answer. Posting here in case anyone else has hit the same error or knows the actual root cause. Thanks.
1
0
65
2d
Appe tried migrating my account, failed and wants me to pay again?
I created an apple developer account as an individual developer, paid the $99 fee and was testing my app with it. I was able to distribute several builds with it into internal testflight and was ready to submit for review and listing. When it came time to submit the app I wanted to submit as an LLC (instead of invidual developer) so I called into support who said that is totally fine but they need to migrate it and asked me to submit paperwork for that and start the process. I did all that (which costed even more money and time) and they confirmed that the migration is underway. A few weeks later there were no updates so I called in again and was told that the migration was declined. Furthermore, due to this partial migration, I am also unable to distribute an app even tp internal testflight anymore (which I could do before). So I called in again and I asked if I can submit as an individual dev and was told that I can and they can set it back to an individual dev account. The support person said that she qill submit a request for that. So I waited a few more weeks for an update of which there was none. I call in again and now they tell me that they can't reset it back to an individual developer account and that I have to create a new account if I want to work on an app and that requires paying the fees again and further that they can't even refund me the fees I already paid. Is this a common occurrance? what is my recourse here?
2
0
62
2d
Problème avec le payement des 99 $.
Bonjour a tous : J'ai payé Samedi à environ 3h PM (Paris) les 99 $ demandé pour publié une APPS, il m'ont demandé très peut de temps après ma carte d'identité Française vers 05h PM (Paris), je l'ai envoyé vers 20 Heure (Paris), hors depuis je n'ai aucun retour. J'ai envoyé un E-mail au support vers 10h AM (Paris). Hors depuis aucun retour, pouvez-vous m'aidé ?
4
0
35
2d
static analyzer error in std::sort
I'm getting a static analysis warning on the following code. I don't think it could be my error, but I guess it's more likely a static analysis false positive than a C++ standard library bug. The warning says "Method called on moved-from object of type 'std::basic_string'". Tested in Xcode 26.5 RC. Reported as FB22735405. #include <algorithm> #include <string> #include <vector> #include <CoreFoundation/CoreFoundation.h> template < class traits = std::char_traits<char>, class Allocator = std::allocator<char> > struct UTF8StringLess { bool operator()( const std::basic_string<char, traits, Allocator>& inFirst, const std::basic_string<char, traits, Allocator>& inSecond ) const; }; template<class traits, class Allocator> inline bool UTF8StringLess<traits, Allocator>::operator()( const std::basic_string<char, traits, Allocator>& inFirst, const std::basic_string<char, traits, Allocator>& inSecond ) const { CFStringRef theFirst = ::CFStringCreateWithCString( nullptr, inFirst.c_str(), kCFStringEncodingUTF8 ); CFStringRef theSecond = ::CFStringCreateWithCString( nullptr, inSecond.c_str(), kCFStringEncodingUTF8 ); CFComparisonResult compResult = ::CFStringCompare( theFirst, theSecond, kCFCompareCaseInsensitive ); bool isLess = (compResult == kCFCompareLessThan); ::CFRelease( theFirst ); ::CFRelease( theSecond ); return isLess; } int main(int argc, const char * argv[]) { std::vector<std::string> names{ "obey", "Zorro", "can" }; std::sort( names.begin(), names.end(), UTF8StringLess() ); return EXIT_SUCCESS; }
6
0
49
2d
In Xcode Coding Assistant (Xcode 26.4.1), how can I make the @fileName feature work for previous projects as well? (error: The application can't be opened. -50)
In Xcode (26.4.1), when using Coding Assistant, in new project, one can reference files by @fileName, but it does not work for projects that have been created e.g. 8 months ago. How can I make the @fileName feature work for previous projects as well? Project it fails with (@ does not show any files from the Project Navigator, and when e.g. manually referencing the @fileName and then clicking on the file in the Coding Assistant chat, macOS shows): Project it works with (FriendsFavoriteMovies project from this tutorial: Navigate sample data | Apple Developer Documentation) I'd be very happy to know a solution to my question: How can I make the @fileName feature work for previous projects as well? Thank you very much, Tim :)
0
0
32
2d
Cannot Install Developer Beta Update OTA or IPSW
I’m a registered iOS developer, and I’ve been facing an issue with installing iOS developer updates for the past couple of years. I can download the updates, but they get stuck at 99.9% complete and don’t finish. I’ve tried following the instructions to force restart the phone, but it stays on the Apple logo screen until it dies. I can update official iOS versions, but not beta versions. To update, I have to put the phone in DFU mode and install the update that way. This is frustrating and prevents me from making timely updates to my app and from diagnosing new issues during testing. I’d like to request that Apple investigate this issue and identify a solution. For reference, I’ve installed a bare-bones version with no new apps, and the problem persists. I would like a resolution that allows me to update normally without having to DFU the phone each time. This occurs via OTA or IPSW manual download and installation. Please refer to the following FB submission numbers: FB21642029 and FB21017894. CAN SOMEONE PLEASE RESPOND BACK TO THIS MESSAGE AND HELP ME TROUBLESHOOT THIS ISSUE?!
3
0
270
2d
Provisioning profiles marked "Ineligible" for Contactless Pass Provisioning even though entitlement is present in profile
We are seeing what looks like a signing / managed-capability mismatch for Contactless Pass Provisioning. Environment Team ID: S7AUTD2C2B Bundle IDs: com.swiftpass.ios com.swiftpass.ios.dev Xcode: 26.4 macOS: 26.4 Problem Our app has had Contactless Pass Provisioning approved by Apple for a long time, and builds were working until a few days ago. Without any intentional signing/capability changes on our side, Xcode started failing with the following error: Provisioning profile "Swiftpass prod Appstore" doesn't include the Contactless Pass Provisioning capability. Contactless Pass Provisioning capability needs to be assigned to your team and bundle identifier by Apple in order to be included in a profile. Observed behavior Xcode marks the relevant provisioning profiles as "Ineligible" in the profile selector. This affects both development/debug and release/App Store builds. If we remove Contactless Pass Provisioning from the app entitlements/capabilities, the exact same profiles immediately become eligible and the signing error disappears. Important detail The downloaded provisioning profiles already contain the entitlement that Xcode claims is missing. We verified the downloaded profile with: security cms -D -i /Users/sergej/Downloads/Swiftpass_prod_Appstore\(1\).mobileprovision and it contains: <key>com.apple.developer.contactless-payment-pass-provisioning</key> <array> <string>shareablecredential</string> </array> So the issue appears to be that the profile contents look correct the capability is still present in the developer portal but Xcode's eligibility check still says the profile does not include the capability What we verified Contactless Pass Provisioning is still enabled for the App ID in the Apple Developer portal Newly recreated / redownloaded profiles still contain the entitlement Both dev and distribution profiles are affected The behavior is reproducible across profile refreshes and local cleanup What we already tried Reinstalled Xcode Updated Xcode and macOS Updated command line tools Cleaned DerivedData Deleted local provisioning profile cache Refreshed/redownloaded profiles from Xcode Recreated provisioning profiles in the developer portal Removed and re-added the capability in Xcode Expected behavior If the downloaded provisioning profile contains com.apple.developer.contactless-payment-pass-provisioning, Xcode should treat that profile as eligible. Actual behavior Xcode reports that the capability is missing and marks the profile as ineligible, even though the entitlement is present in the downloaded profile. Question Has anyone seen this specific mismatch with Contactless Pass Provisioning or other managed capabilities? This currently looks like either: an Apple backend/App ID capability-assignment sync problem, or an Xcode eligibility-validation bug for managed capabilities Feedback Assistant ID: FB22439399. It contains screenshots that showcase the issue as well.
26
7
1.7k
2d
Unable to complete Apple Developer Program enrollment / ID upload link shows unauthorized
I recently purchased the Apple Developer Program membership and received an email confirming that my enrollment is being processed. However, when I log in to my Apple Developer account, it still prompts me to purchase the membership again, as if the purchase was not completed. Later, I received another email asking me to upload my ID through the portal to continue the enrollment process. But when I click the provided link and try to access the upload page, I get an error saying that I am not allowed, not authenticated, or do not have permission to access the page. I am unable to proceed with the verification or understand the current status of my enrollment. Has anyone faced this issue before, or can someone from Apple Developer Support guide me on how to resolve this?
0
1
133
3d
My Apple developer registration process has not been completed for 3 weeks.
I've been trying to create an Apple developer account for 3 weeks. I've created 3-4 different accounts and tried them on different devices. I finally managed to contact Apple Developer Support via email, but I don't think I'll find a solution with them. First, I explained my problem, they listened attentively, and offered solutions. They told me to verify my identity, which I uploaded to the email they sent. Then they told me to wait. 2-3 days passed, and then I received another email saying, "We can't verify your identity with the Apple Developer app, or provide further assistance with Apple Accounts for Apple Developer programs." I don't understand; I manually uploaded my ID to the system, so why isn't this working? Case number: 102886872114
0
0
67
3d
Xcode 26.4: Regressions in Intelligence features
Just installed the new Xcode 26.4 RC build (17E192) after happily using 26.3 for a few months. I'm noticing some immediate regressions in the Intelligence features: Frequent losing of OAuth token (Claude Agent). This had previously been fixed and now is back. Agent "Thinking" is constrained to thought bubble windows, which are (a) too small to read, (b) not scrollable when thinking goes beyond a few paragraphs. Yes they are tappable when thinking is finished, but this doesn't help. Due to (2), in deep thinking, it's impossible to follow progress beyond the visible window, so impossible to know if the agent is going off the rails. I'm noticing just more general slowness to complete tasks. Not just complete them -- it seems like it takes longer to START tasks, which is really weird. It sits there thinking for longer. Same project, same model as before. Every time you tap "New Chat" it presents both Claude and Codex choices, even if you're only signed into one. This turned a simple single tap into now a required two taps. Overall this feels like a frustrating setback after a very positive user experience in 26.3.
16
9
801
3d
Xcode hangs with iig
Xcode iig hangs. In the best case, the project will be in error - and Xcode cannot recover. To recover restarting Xcode may not help (force quit Xcode) - most of the time a restart of the Mac is required. Its speaks to software quality when "Clean build folder" is your best friend. Xcode iig hangs, and while its only using two of my MacStudio's 10 cores - the whole mac hangs (Activity monitor confirms, if it opens at all). If you are not quick enough to reboot the Mac will hang and require power down using power button. Don't use Finder to reboot because Finder hangs too and will not reboot - use terminal (sudo shutdown -r now). see screen dump below: super useful! After restart, Xode may refuse to launch. This is something I notice with my Java apps (jar launcher): If the app ends with an exit code (1, not 0 like normally) - it will not launch until I restart the Mac, in the meantime must launch the app from Eclipse. After restart, the crash reporter comes up - asking me to type a reason. When I type "iig" the auto-correct will change that to "big". This is so totally useful! MacOS 26.4.1 Xcode 26.3 apologies - its a lousy day when your Mac hangs and requires a restart - repeatedly; until I got my iig fixed up and Xcode fully aware with the actual content. iig error reporting is lousy; which makes fixing so extra hard.
0
0
33
3d
Xcode/codesign login keychain password issue
I’m trying to build and run a brand-new Xcode project created from the Audio Unit Extension App template for local macOS development on a brand-new Mac, and I’m blocked by a signing/keychain issue. Environment: macOS on a brand-new Mac Xcode 26.4.1 Build version 17E202 Personal Team Targeting My Mac Project type: Audio Unit Extension App Main symptom: During build/run, Xcode repeatedly shows this prompt: codesign wants to access key "Apple Development: Sam Magnant (...)" in your keychain It asks for the login keychain password. Important detail My current Mac password successfully unlocks the login keychain manually in Keychain Access every time. So the issue seems specific to Xcode / codesign using the Apple Development private key, not a general inability to unlock the keychain. What I’ve already tried Reset the default keychain Logged out and back in after reset Changed my Mac account password to a new password Confirmed the login keychain unlocks manually with the current Mac password Deleted and recreated local Apple Development certificate/private key where possible Removed and re-added my Apple account in Xcode Checked the private key in Keychain Access Confirmed the private key exists under the Apple Development certificate Confirmed Allow all applications to access this item is already checked on the private key Removed App Groups and other extra capabilities to simplify the project Tried security set-key-partition-list -S apple-tool:,apple:,codesign: -s -k '' ~/Library/Keychains/login.keychain-db Tried switching the project to simpler signing configurations, then switched back to standard Apple Development signing What’s confusing Xcode appears to know about an Apple Development certificate/private key Keychain Access shows the identity under login > My Certificates The login keychain unlocks fine manually But codesign still prompts, and the machine reports 0 valid identities found Questions What would cause Keychain Access to show the Apple Development identity, but security find-identity -v -p codesigning to report 0 valid identities found? Is this most likely a broken certificate/private key pairing, trust chain issue, or something specific to Personal Team signing? Is there a recommended way to fully repair the local Apple Development signing identity on the current macOS user account without creating a new macOS user? Are there known issues with the Audio Unit Extension App template and Personal Team local development on macOS?
0
0
29
3d
My application for organization status is taking a very long time to process.
I submitted the application with my DUNS number on May 8, 2026, and today is already May 11, 2026. After submitting the form, it said the process would take about 1 day, but quite a bit of time has already passed and I still have not received organization status. I also have not received any emails from Apple. Could there possibly be some issue that I am not aware of?
Replies
0
Boosts
0
Views
24
Activity
2d
Developer program renewal blocked: "This item is currently not available in your country or region" — phone escalations not returned for 3 weeks
Posting here in hope of getting this in front of someone at Apple who can actually look at our account, since three weeks of phone support has produced no follow-up. Setup: Organizational Apple Developer Program membership, active through 2024 Did not renew in 2024 (no apps shipping that year) Same country/region as every prior successful renewal; nothing has changed on our side Have a completed app ready to ship right now Error: During renewal, the payment page returns: "This item is currently not available in your country/region." Reproduced consistently across browsers, networks, and payment methods. What I've tried: Renewing via the existing org account → same error every attempt. Enrolling a new org Developer account → enrollment is auto-cancelled with the message that our organization already has a membership and we must use the existing one. Phoned Apple Developer Program Support 10+ times over the past three weeks. Every call ends with the agent stating the issue requires senior advisor escalation and that I will be contacted by email. No email has ever arrived. What I need: A path to a senior Developer Program Support advisor who can actually look at our case. Happy to share Team ID and Apple ID through any official channel. If anyone from Apple sees this - our case has been open via phone support for three weeks with zero follow-up. Any pointer would be hugely appreciated.
Replies
4
Boosts
0
Views
150
Activity
2d
Program Enrollment
Hi everyone, I’m trying to enroll in the Apple Developer Program as an Individual developer in Canada. However, when I try to complete the enrollment, I receive this message: “For one or more reasons, your enrollment in the Apple Developer Program could not be completed.” I have already checked my Apple Account information, including my legal name, country/region, phone number, billing address, payment method, and two-factor authentication. I also tried contacting Apple Developer Support, but I have not received a clear solution yet. Has anyone experienced this issue before? Any advice would be greatly appreciated. Thank you.
Replies
1
Boosts
0
Views
56
Activity
2d
Individual → Organization transfer stuck in “Senior Advisor” review (2+ weeks, no contact)
I’m currently blocked on converting my Apple Developer account from Individual to Organization. Case ID: 102876994832 Timeline: February: initiated individual → organization transfer Application stalled with no follow-up link or communication Contacted Apple Support to restart process Case escalated to “Senior Advisor Team” Last 2+ weeks: no contact, no updates, no callback Current Status: Marked as “under review by Senior Advisor Team” Apple Support is unable to transfer calls or provide updates Impact: This is blocking organizational setup and release workflows We have multiple apps waiting to go to TestFlight for QA We wanted to use iOS before Android but have been forced to test UX w/ Android users Request: Confirmation of current enrollment status Estimated timeline or SLA for resolution Direct escalation or re-assignment if the case is stalled Has anyone from Apple Developer Program team been able to help move cases like this forward?
Replies
1
Boosts
0
Views
57
Activity
2d
Cant join Apple Developer Program
I cant sign up for an Apple Developer Accnt. Error Screenshot attached
Replies
1
Boosts
0
Views
30
Activity
2d
Cannot enroll to the Apple Developer program
I'm unable to complete Apple Developer Program enrollment and would appreciate guidance on the actual cause. Environment: Region: Kazakhstan Enrollment type: Individual Browser/device tried: Safari on macOS , Apple Developer app on macOS, iphone, Chrome on macOS Apple ID: 2FA enabled, in good standing, name matches government ID What happens: At the terms agreements step, I receive the following error verbatim: Cannot enroll to the Apple Developer program What do I do? I've contacted Developer Program Support via the contact form several times, but no answer. Posting here in case anyone else has hit the same error or knows the actual root cause. Thanks.
Replies
1
Boosts
0
Views
65
Activity
2d
Appe tried migrating my account, failed and wants me to pay again?
I created an apple developer account as an individual developer, paid the $99 fee and was testing my app with it. I was able to distribute several builds with it into internal testflight and was ready to submit for review and listing. When it came time to submit the app I wanted to submit as an LLC (instead of invidual developer) so I called into support who said that is totally fine but they need to migrate it and asked me to submit paperwork for that and start the process. I did all that (which costed even more money and time) and they confirmed that the migration is underway. A few weeks later there were no updates so I called in again and was told that the migration was declined. Furthermore, due to this partial migration, I am also unable to distribute an app even tp internal testflight anymore (which I could do before). So I called in again and I asked if I can submit as an individual dev and was told that I can and they can set it back to an individual dev account. The support person said that she qill submit a request for that. So I waited a few more weeks for an update of which there was none. I call in again and now they tell me that they can't reset it back to an individual developer account and that I have to create a new account if I want to work on an app and that requires paying the fees again and further that they can't even refund me the fees I already paid. Is this a common occurrance? what is my recourse here?
Replies
2
Boosts
0
Views
62
Activity
2d
Apple developer enrollment
Few days ago I paid $99 and uploaded my ID and didn’t get more info how long its going to take.
Replies
1
Boosts
0
Views
68
Activity
2d
Problème avec le payement des 99 $.
Bonjour a tous : J'ai payé Samedi à environ 3h PM (Paris) les 99 $ demandé pour publié une APPS, il m'ont demandé très peut de temps après ma carte d'identité Française vers 05h PM (Paris), je l'ai envoyé vers 20 Heure (Paris), hors depuis je n'ai aucun retour. J'ai envoyé un E-mail au support vers 10h AM (Paris). Hors depuis aucun retour, pouvez-vous m'aidé ?
Replies
4
Boosts
0
Views
35
Activity
2d
Problem with the $99 payment.
Hello everyone: I paid the $99 requested to publish an app on Saturday around 3 PM (Paris time). They asked me for my French ID card shortly after, around 5 PM (Paris time). I sent it around 8 PM (Paris time), but I haven't heard back since. I emailed support around 10 AM (Paris time). Still no response. Can you help me?
Replies
1
Boosts
0
Views
26
Activity
2d
static analyzer error in std::sort
I'm getting a static analysis warning on the following code. I don't think it could be my error, but I guess it's more likely a static analysis false positive than a C++ standard library bug. The warning says "Method called on moved-from object of type 'std::basic_string'". Tested in Xcode 26.5 RC. Reported as FB22735405. #include <algorithm> #include <string> #include <vector> #include <CoreFoundation/CoreFoundation.h> template < class traits = std::char_traits<char>, class Allocator = std::allocator<char> > struct UTF8StringLess { bool operator()( const std::basic_string<char, traits, Allocator>& inFirst, const std::basic_string<char, traits, Allocator>& inSecond ) const; }; template<class traits, class Allocator> inline bool UTF8StringLess<traits, Allocator>::operator()( const std::basic_string<char, traits, Allocator>& inFirst, const std::basic_string<char, traits, Allocator>& inSecond ) const { CFStringRef theFirst = ::CFStringCreateWithCString( nullptr, inFirst.c_str(), kCFStringEncodingUTF8 ); CFStringRef theSecond = ::CFStringCreateWithCString( nullptr, inSecond.c_str(), kCFStringEncodingUTF8 ); CFComparisonResult compResult = ::CFStringCompare( theFirst, theSecond, kCFCompareCaseInsensitive ); bool isLess = (compResult == kCFCompareLessThan); ::CFRelease( theFirst ); ::CFRelease( theSecond ); return isLess; } int main(int argc, const char * argv[]) { std::vector<std::string> names{ "obey", "Zorro", "can" }; std::sort( names.begin(), names.end(), UTF8StringLess() ); return EXIT_SUCCESS; }
Replies
6
Boosts
0
Views
49
Activity
2d
In Xcode Coding Assistant (Xcode 26.4.1), how can I make the @fileName feature work for previous projects as well? (error: The application can't be opened. -50)
In Xcode (26.4.1), when using Coding Assistant, in new project, one can reference files by @fileName, but it does not work for projects that have been created e.g. 8 months ago. How can I make the @fileName feature work for previous projects as well? Project it fails with (@ does not show any files from the Project Navigator, and when e.g. manually referencing the @fileName and then clicking on the file in the Coding Assistant chat, macOS shows): Project it works with (FriendsFavoriteMovies project from this tutorial: Navigate sample data | Apple Developer Documentation) I'd be very happy to know a solution to my question: How can I make the @fileName feature work for previous projects as well? Thank you very much, Tim :)
Replies
0
Boosts
0
Views
32
Activity
2d
I need serious help
May 4, i subscribed to apple developer program then they ask me for 99$ , i paid and got confirmation on main but then go no replay and no support replay to main and nothing at all happens what should i do now ?
Replies
0
Boosts
0
Views
15
Activity
2d
Cannot Install Developer Beta Update OTA or IPSW
I’m a registered iOS developer, and I’ve been facing an issue with installing iOS developer updates for the past couple of years. I can download the updates, but they get stuck at 99.9% complete and don’t finish. I’ve tried following the instructions to force restart the phone, but it stays on the Apple logo screen until it dies. I can update official iOS versions, but not beta versions. To update, I have to put the phone in DFU mode and install the update that way. This is frustrating and prevents me from making timely updates to my app and from diagnosing new issues during testing. I’d like to request that Apple investigate this issue and identify a solution. For reference, I’ve installed a bare-bones version with no new apps, and the problem persists. I would like a resolution that allows me to update normally without having to DFU the phone each time. This occurs via OTA or IPSW manual download and installation. Please refer to the following FB submission numbers: FB21642029 and FB21017894. CAN SOMEONE PLEASE RESPOND BACK TO THIS MESSAGE AND HELP ME TROUBLESHOOT THIS ISSUE?!
Replies
3
Boosts
0
Views
270
Activity
2d
Provisioning profiles marked "Ineligible" for Contactless Pass Provisioning even though entitlement is present in profile
We are seeing what looks like a signing / managed-capability mismatch for Contactless Pass Provisioning. Environment Team ID: S7AUTD2C2B Bundle IDs: com.swiftpass.ios com.swiftpass.ios.dev Xcode: 26.4 macOS: 26.4 Problem Our app has had Contactless Pass Provisioning approved by Apple for a long time, and builds were working until a few days ago. Without any intentional signing/capability changes on our side, Xcode started failing with the following error: Provisioning profile "Swiftpass prod Appstore" doesn't include the Contactless Pass Provisioning capability. Contactless Pass Provisioning capability needs to be assigned to your team and bundle identifier by Apple in order to be included in a profile. Observed behavior Xcode marks the relevant provisioning profiles as "Ineligible" in the profile selector. This affects both development/debug and release/App Store builds. If we remove Contactless Pass Provisioning from the app entitlements/capabilities, the exact same profiles immediately become eligible and the signing error disappears. Important detail The downloaded provisioning profiles already contain the entitlement that Xcode claims is missing. We verified the downloaded profile with: security cms -D -i /Users/sergej/Downloads/Swiftpass_prod_Appstore\(1\).mobileprovision and it contains: <key>com.apple.developer.contactless-payment-pass-provisioning</key> <array> <string>shareablecredential</string> </array> So the issue appears to be that the profile contents look correct the capability is still present in the developer portal but Xcode's eligibility check still says the profile does not include the capability What we verified Contactless Pass Provisioning is still enabled for the App ID in the Apple Developer portal Newly recreated / redownloaded profiles still contain the entitlement Both dev and distribution profiles are affected The behavior is reproducible across profile refreshes and local cleanup What we already tried Reinstalled Xcode Updated Xcode and macOS Updated command line tools Cleaned DerivedData Deleted local provisioning profile cache Refreshed/redownloaded profiles from Xcode Recreated provisioning profiles in the developer portal Removed and re-added the capability in Xcode Expected behavior If the downloaded provisioning profile contains com.apple.developer.contactless-payment-pass-provisioning, Xcode should treat that profile as eligible. Actual behavior Xcode reports that the capability is missing and marks the profile as ineligible, even though the entitlement is present in the downloaded profile. Question Has anyone seen this specific mismatch with Contactless Pass Provisioning or other managed capabilities? This currently looks like either: an Apple backend/App ID capability-assignment sync problem, or an Xcode eligibility-validation bug for managed capabilities Feedback Assistant ID: FB22439399. It contains screenshots that showcase the issue as well.
Replies
26
Boosts
7
Views
1.7k
Activity
2d
Unable to complete Apple Developer Program enrollment / ID upload link shows unauthorized
I recently purchased the Apple Developer Program membership and received an email confirming that my enrollment is being processed. However, when I log in to my Apple Developer account, it still prompts me to purchase the membership again, as if the purchase was not completed. Later, I received another email asking me to upload my ID through the portal to continue the enrollment process. But when I click the provided link and try to access the upload page, I get an error saying that I am not allowed, not authenticated, or do not have permission to access the page. I am unable to proceed with the verification or understand the current status of my enrollment. Has anyone faced this issue before, or can someone from Apple Developer Support guide me on how to resolve this?
Replies
0
Boosts
1
Views
133
Activity
3d
My Apple developer registration process has not been completed for 3 weeks.
I've been trying to create an Apple developer account for 3 weeks. I've created 3-4 different accounts and tried them on different devices. I finally managed to contact Apple Developer Support via email, but I don't think I'll find a solution with them. First, I explained my problem, they listened attentively, and offered solutions. They told me to verify my identity, which I uploaded to the email they sent. Then they told me to wait. 2-3 days passed, and then I received another email saying, "We can't verify your identity with the Apple Developer app, or provide further assistance with Apple Accounts for Apple Developer programs." I don't understand; I manually uploaded my ID to the system, so why isn't this working? Case number: 102886872114
Replies
0
Boosts
0
Views
67
Activity
3d
Xcode 26.4: Regressions in Intelligence features
Just installed the new Xcode 26.4 RC build (17E192) after happily using 26.3 for a few months. I'm noticing some immediate regressions in the Intelligence features: Frequent losing of OAuth token (Claude Agent). This had previously been fixed and now is back. Agent "Thinking" is constrained to thought bubble windows, which are (a) too small to read, (b) not scrollable when thinking goes beyond a few paragraphs. Yes they are tappable when thinking is finished, but this doesn't help. Due to (2), in deep thinking, it's impossible to follow progress beyond the visible window, so impossible to know if the agent is going off the rails. I'm noticing just more general slowness to complete tasks. Not just complete them -- it seems like it takes longer to START tasks, which is really weird. It sits there thinking for longer. Same project, same model as before. Every time you tap "New Chat" it presents both Claude and Codex choices, even if you're only signed into one. This turned a simple single tap into now a required two taps. Overall this feels like a frustrating setback after a very positive user experience in 26.3.
Replies
16
Boosts
9
Views
801
Activity
3d
Xcode hangs with iig
Xcode iig hangs. In the best case, the project will be in error - and Xcode cannot recover. To recover restarting Xcode may not help (force quit Xcode) - most of the time a restart of the Mac is required. Its speaks to software quality when "Clean build folder" is your best friend. Xcode iig hangs, and while its only using two of my MacStudio's 10 cores - the whole mac hangs (Activity monitor confirms, if it opens at all). If you are not quick enough to reboot the Mac will hang and require power down using power button. Don't use Finder to reboot because Finder hangs too and will not reboot - use terminal (sudo shutdown -r now). see screen dump below: super useful! After restart, Xode may refuse to launch. This is something I notice with my Java apps (jar launcher): If the app ends with an exit code (1, not 0 like normally) - it will not launch until I restart the Mac, in the meantime must launch the app from Eclipse. After restart, the crash reporter comes up - asking me to type a reason. When I type "iig" the auto-correct will change that to "big". This is so totally useful! MacOS 26.4.1 Xcode 26.3 apologies - its a lousy day when your Mac hangs and requires a restart - repeatedly; until I got my iig fixed up and Xcode fully aware with the actual content. iig error reporting is lousy; which makes fixing so extra hard.
Replies
0
Boosts
0
Views
33
Activity
3d
Xcode/codesign login keychain password issue
I’m trying to build and run a brand-new Xcode project created from the Audio Unit Extension App template for local macOS development on a brand-new Mac, and I’m blocked by a signing/keychain issue. Environment: macOS on a brand-new Mac Xcode 26.4.1 Build version 17E202 Personal Team Targeting My Mac Project type: Audio Unit Extension App Main symptom: During build/run, Xcode repeatedly shows this prompt: codesign wants to access key "Apple Development: Sam Magnant (...)" in your keychain It asks for the login keychain password. Important detail My current Mac password successfully unlocks the login keychain manually in Keychain Access every time. So the issue seems specific to Xcode / codesign using the Apple Development private key, not a general inability to unlock the keychain. What I’ve already tried Reset the default keychain Logged out and back in after reset Changed my Mac account password to a new password Confirmed the login keychain unlocks manually with the current Mac password Deleted and recreated local Apple Development certificate/private key where possible Removed and re-added my Apple account in Xcode Checked the private key in Keychain Access Confirmed the private key exists under the Apple Development certificate Confirmed Allow all applications to access this item is already checked on the private key Removed App Groups and other extra capabilities to simplify the project Tried security set-key-partition-list -S apple-tool:,apple:,codesign: -s -k '' ~/Library/Keychains/login.keychain-db Tried switching the project to simpler signing configurations, then switched back to standard Apple Development signing What’s confusing Xcode appears to know about an Apple Development certificate/private key Keychain Access shows the identity under login > My Certificates The login keychain unlocks fine manually But codesign still prompts, and the machine reports 0 valid identities found Questions What would cause Keychain Access to show the Apple Development identity, but security find-identity -v -p codesigning to report 0 valid identities found? Is this most likely a broken certificate/private key pairing, trust chain issue, or something specific to Personal Team signing? Is there a recommended way to fully repair the local Apple Development signing identity on the current macOS user account without creating a new macOS user? Are there known issues with the Audio Unit Extension App template and Personal Team local development on macOS?
Replies
0
Boosts
0
Views
29
Activity
3d