Apple Developers

RSS for tag

This is a dedicated space for developers to connect, share ideas, collaborate, and ask questions. Introduce yourself, network with other developers, and foster a supportive community.

Learn More

Posts under Apple Developers subtopic

Post

Replies

Boosts

Views

Activity

App Stuck in Review for 2 Weeks After Resubmission - Seeking Advice
Anyone with the similar experience? Would appreciate the advice: Timeline: Initial submission: ~4 weeks ago First review: Completed after ~2 weeks after we have sent the expedited review request Fixes applied: Completed within 24 hours Resubmission: August 12, 2026 Current status: Still in review - no activity for ~2 weeks We have a planned launch date that's now at risk due to this review delay. The lack of any reviewer interaction on the resubmission is particularly concerning. Any insights or advice would be greatly appreciated
3
1
1k
Aug ’26
TestFlight falsely says "must renew membership" (account is fully paid through 2027)
App: AI RunCoach — App ID 6782097197, bundle ID com.airuncoach.app, Team ID 4N3X74Y2LF When adding a new build to our External Testing group, TestFlight shows: "Before you can use TestFlight to distribute beta builds of your app, you must renew your Apple Developer Program membership." Our membership is not expired: the Membership Details page shows renewal date 20 June 2027, auto-renew ON, and the €99 fee already paid. We've also checked Agreements, Tax, and Banking — nothing shows as pending or requiring action anywhere. In the meantime, our app has been stuck in "In Review" status since August 3, and TestFlight installations also seem to be blocked. A request for an expedited review produced no result, and a request for a phone consultation did not lead to any contact either. Did anyone else experience this, and could someone advise on how to contact Apple about this? Thanks in advance for any pointers.
10
8
1.6k
Aug ’26
membership
i have membership, bought 2 weeks ago but several days later i have this issue Before you can use TestFlight to distribute beta builds of your app, you must renew your Apple Developer Program membership.
1
0
463
Aug ’26
Where did the Carrier attribution on an incoming call go with iOS 27 beta?
For iOS 27 Betas 1-5, when there was an incoming phone call, the call screen would display "Identified by XXX Mobile", where XXX is the name of the carrier of the sim. But with beta 6 and now 7, this is no longer the case. Is this an accidental regression bug or intentional removal of the attribution? If so, then why was it present in the earlier betas?
0
0
189
Aug ’26
PPS – Play · Pause · Stop | Looking for Spanish-speaking TestFlight testers
Hi everyone! We’re looking for beta testers for PPS – Play · Pause · Stop, a new iPhone app designed to make tracking working hours simple, fast and intuitive. ⚠️ Important: The current beta is available in Spanish only. Please join only if you are comfortable testing an app in Spanish. PPS is designed for people who want to keep an accurate record of their working time and earnings without complicated time-management systems. With PPS you can: • Start, pause, resume and finish a workday • Add and edit workdays manually • Manage split shifts and breaks • Track regular and overtime hours • Configure your usual working schedule • Calculate estimated earnings based on hourly rates • View your work history in a calendar • Mark workdays as paid or pending • View summaries by day, week, month or custom date range • Add notes to individual workdays • Export work reports This is our first external beta, so we’re particularly interested in feedback from people who have never used PPS before. We would especially like to know: • Is the app intuitive without instructions? • Is it obvious how to start and finish a workday? • Are pauses and split shifts easy to understand? • Are the calendar and summaries useful and clear? • Do regular/overtime calculations behave as expected? • Are earnings and paid/pending information understandable? • Is there anything confusing or unnecessarily complicated? • What feature do you think is missing? • Have you found any bugs, crashes or UI problems? Suggestions and criticism are very welcome. We’re interested not only in finding bugs, but also in understanding how PPS feels to someone seeing it for the first time. TestFlight: https://testflight.apple.com/join/6vkXy7EU The first testing group is intentionally limited while we collect and evaluate feedback. Thanks for helping us improve PPS!
0
0
248
Aug ’26
Looking for TestFlight testers for my new iOS dating app Ritmo
Hi everyone, I’m currently preparing the launch of Ritmo, a new iOS dating app for active people, and I’m looking for a few developers/users who would be willing to test it on TestFlight. I’d especially appreciate feedback on: Onboarding Profile discovery Likes and matching Messaging Notifications Overall UX and bugs It should only take around 10 minutes. TestFlight: https://testflight.apple.com/join/qGbXXeph Any feedback would be really helpful. Thanks!
0
0
449
Aug ’26
macOS Golden Gate Beta battery percentage appearance
Hello! First time posting here. As I'm using the fourth macOS Golden Gate public beta now, I'd love to see if there's more people who also think the battery percentage inside the icon looks unreadable. Dear Apple devs, could you please change the size of the battery icon or place the battery percentage outside, how it used to be in the older macOS versions? I don't have the poorest vision, yet it's still quite difficult to see it.
0
0
396
Aug ’26
Did you know that you can't make calls on the iPhone 17 Pro Max if you use two eSIMs?
You know that you can install up to 9 eSIMs and activate 2, right? I use two activated eSIMs, but when I turn them both on, it says my location cannot be found. I only get through when I make calls, and I receive very few calls. When I answer a call, one of the two SIMs turns off. My carrier and Apple say they are currently looking into this, but where can I get a response? I am trying to surrender my current phone and watch for repair for the sake of public interest, even if it means sacrificing privacy, but I have no way to do so. What is even more ridiculous is that the paired watch does not match the watch name or the actual watch itself. It looks as if someone else's watch has been paired. The digital crown, gestures, and health sensors are not working. I am just using the watch as a speaker to listen to music. None of the functions work. If Developer Mode were enabled, I could force gestures to work through Accessibility, but Developer Mode won't turn on.
0
0
398
Aug ’26
Xcode 26 keeps telling you "Not Signed In" after you authorize Claude or Codex in the browser?
If you're on an Intel Mac, here's the reason and the fix. Cost me an evening, and I found nothing online except closed bug reports with the same symptom. The problem: The browser flow works fine. You authorize, the page confirms, Xcode acts like nothing happened, no error anywhere. Xcode only downloads the Apple Silicon (arm64) build of its agent binaries. On Intel they can't run at all. The process meant to receive your login dies instantly with "bad CPU type in executable" and Xcode never surfaces it. Check if this is you: file ~/Library/Developer/Xcode/CodingAssistant/Agents/claude/*/claude If it says arm64 and your Mac is Intel, that's the problem. The fix: Open the Info.plist next to the binary. It has the exact download URL. Download the x64 build of the same version. → Claude: change darwin-arm64 to darwin-x64 in that URL. → Codex: grab codex-x86_64-apple-darwin.tar.gz from the matching rust-v release on GitHub. Replace the binary and make it executable: chmod 755 Update the checksum in Info.plist. It's a plain SHA-512: shasum -a 512 Restart Xcode and sign in again. Bonus (Claude Pro / Max) Run claude setup-token in Terminal, then add the token to: ~/Library/Developer/Xcode/CodingAssistant/ClaudeAgentConfig/settings.json {"env": {"CLAUDE_CODE_OAUTH_TOKEN": "your-token"}} Pick "Authenticate with Configuration File" in the agent menu. Runs on your subscription no API key. Heads up: an Xcode update can re-download the wrong binary, so you may have to repeat this until Apple fixes the architecture detection.
1
1
1.1k
Aug ’26
ChatGPT in an Xcode 27.5 window won't clear last chat
I am using Xcode 27.5 beta along with the integration of Claude and Chatgpt sessions in the same project screen. When I post a message in a chat with Chatgpt, once it finished reading and replying back, the message I sent shows back up in the message box. I have to manually delete when I want to post a reply. Claude does not do this. Is there a setting I am missing? Thank You
0
0
252
Aug ’26
Dictionary Bundles not Scrolling when text expanded
Just posting this so it's documented somewhere. I think the onus is on apple to fix it, but I haven't seen this mentioned elsewhere. When a Dictionary.app entry's content grows taller after the entry has already loaded via /, a CSS-only checkbox/:checked toggle, or JavaScript toggling display/class, the WebView's internal layout correctly reflows to the new height, but the surrounding native scroll view's content size does not update to match. The added content is visible but expanded below the window and cannot be scrolled down to. Resizing the window or the sidebar within the dictionary app enables scrolling as expected, but then collapsing the content, without resizing you can still scroll to the prior (now empty) extent of the then-expanded section. Environment: macOS 26.5.1 Dictionary.app 2.3.0 Not sure how to find the DDK version but I'm pretty sure that doesn't matter
0
0
70
Aug ’26
Enrolment stuck and no response on emails or calls
Hello everyone, I recently enrolled in the Apple Developer Program, and my enrollment has been stuck on: “Your enrollment is being processed.” I’d like to ask the community/Apple support: How long did your enrollment take to get approved? Has anyone recently experienced the same delay? Did contacting Apple Developer Support help speed up the process? Is there anything specific I should do while the enrollment is being processed? Should I start a new application? I understand that enrollment may require verification, but the lack of progress is making it difficult to plan our development and app launch timeline. With a big marketingbudget and timelines this has become a significant challenge. Any recent experiences or advice would be greatly appreciated. Thank you!
2
1
108
Aug ’26
App Stuck in Review for 2 Weeks After Resubmission - Seeking Advice
Anyone with the similar experience? Would appreciate the advice: Timeline: Initial submission: ~4 weeks ago First review: Completed after ~2 weeks after we have sent the expedited review request Fixes applied: Completed within 24 hours Resubmission: August 12, 2026 Current status: Still in review - no activity for ~2 weeks We have a planned launch date that's now at risk due to this review delay. The lack of any reviewer interaction on the resubmission is particularly concerning. Any insights or advice would be greatly appreciated
Replies
3
Boosts
1
Views
1k
Activity
Aug ’26
Try to Enroll, but get message to Contact Support
I am trying to enroll in the Developer Program, but just get a message saying contact support after I complete the form. I contacted support, but no reply. How does one get support from Apple??? Not a very good introduction to the Apple eco-system.
Replies
0
Boosts
0
Views
246
Activity
Aug ’26
TestFlight falsely says "must renew membership" (account is fully paid through 2027)
App: AI RunCoach — App ID 6782097197, bundle ID com.airuncoach.app, Team ID 4N3X74Y2LF When adding a new build to our External Testing group, TestFlight shows: "Before you can use TestFlight to distribute beta builds of your app, you must renew your Apple Developer Program membership." Our membership is not expired: the Membership Details page shows renewal date 20 June 2027, auto-renew ON, and the €99 fee already paid. We've also checked Agreements, Tax, and Banking — nothing shows as pending or requiring action anywhere. In the meantime, our app has been stuck in "In Review" status since August 3, and TestFlight installations also seem to be blocked. A request for an expedited review produced no result, and a request for a phone consultation did not lead to any contact either. Did anyone else experience this, and could someone advise on how to contact Apple about this? Thanks in advance for any pointers.
Replies
10
Boosts
8
Views
1.6k
Activity
Aug ’26
membership
i have membership, bought 2 weeks ago but several days later i have this issue Before you can use TestFlight to distribute beta builds of your app, you must renew your Apple Developer Program membership.
Replies
1
Boosts
0
Views
463
Activity
Aug ’26
Where did the Carrier attribution on an incoming call go with iOS 27 beta?
For iOS 27 Betas 1-5, when there was an incoming phone call, the call screen would display "Identified by XXX Mobile", where XXX is the name of the carrier of the sim. But with beta 6 and now 7, this is no longer the case. Is this an accidental regression bug or intentional removal of the attribution? If so, then why was it present in the earlier betas?
Replies
0
Boosts
0
Views
189
Activity
Aug ’26
Test apss
I’m looking to be helpful and test apps. Let me know if anybody wants to send me apps to try out and give feedback back
Replies
0
Boosts
0
Views
227
Activity
Aug ’26
PPS – Play · Pause · Stop | Looking for Spanish-speaking TestFlight testers
Hi everyone! We’re looking for beta testers for PPS – Play · Pause · Stop, a new iPhone app designed to make tracking working hours simple, fast and intuitive. ⚠️ Important: The current beta is available in Spanish only. Please join only if you are comfortable testing an app in Spanish. PPS is designed for people who want to keep an accurate record of their working time and earnings without complicated time-management systems. With PPS you can: • Start, pause, resume and finish a workday • Add and edit workdays manually • Manage split shifts and breaks • Track regular and overtime hours • Configure your usual working schedule • Calculate estimated earnings based on hourly rates • View your work history in a calendar • Mark workdays as paid or pending • View summaries by day, week, month or custom date range • Add notes to individual workdays • Export work reports This is our first external beta, so we’re particularly interested in feedback from people who have never used PPS before. We would especially like to know: • Is the app intuitive without instructions? • Is it obvious how to start and finish a workday? • Are pauses and split shifts easy to understand? • Are the calendar and summaries useful and clear? • Do regular/overtime calculations behave as expected? • Are earnings and paid/pending information understandable? • Is there anything confusing or unnecessarily complicated? • What feature do you think is missing? • Have you found any bugs, crashes or UI problems? Suggestions and criticism are very welcome. We’re interested not only in finding bugs, but also in understanding how PPS feels to someone seeing it for the first time. TestFlight: https://testflight.apple.com/join/6vkXy7EU The first testing group is intentionally limited while we collect and evaluate feedback. Thanks for helping us improve PPS!
Replies
0
Boosts
0
Views
248
Activity
Aug ’26
Looking for TestFlight testers for my new iOS dating app Ritmo
Hi everyone, I’m currently preparing the launch of Ritmo, a new iOS dating app for active people, and I’m looking for a few developers/users who would be willing to test it on TestFlight. I’d especially appreciate feedback on: Onboarding Profile discovery Likes and matching Messaging Notifications Overall UX and bugs It should only take around 10 minutes. TestFlight: https://testflight.apple.com/join/qGbXXeph Any feedback would be really helpful. Thanks!
Replies
0
Boosts
0
Views
449
Activity
Aug ’26
Apps Phone Announce -- does not work on hearing aids
Settings , Apps , Phone , Announce -- does not work on hearing aids linked to iPhone via Bluetooth
Replies
0
Boosts
0
Views
144
Activity
Aug ’26
I have a group of people who are using the developer tools and they have taken over my accounts
they have removed my last post these people have been harassing me for eight years or more and I need help. They’re using MDM software and other management software like Remote Desktop’s.
Replies
1
Boosts
0
Views
339
Activity
Aug ’26
macOS Golden Gate Beta battery percentage appearance
Hello! First time posting here. As I'm using the fourth macOS Golden Gate public beta now, I'd love to see if there's more people who also think the battery percentage inside the icon looks unreadable. Dear Apple devs, could you please change the size of the battery icon or place the battery percentage outside, how it used to be in the older macOS versions? I don't have the poorest vision, yet it's still quite difficult to see it.
Replies
0
Boosts
0
Views
396
Activity
Aug ’26
Did you know that you can't make calls on the iPhone 17 Pro Max if you use two eSIMs?
You know that you can install up to 9 eSIMs and activate 2, right? I use two activated eSIMs, but when I turn them both on, it says my location cannot be found. I only get through when I make calls, and I receive very few calls. When I answer a call, one of the two SIMs turns off. My carrier and Apple say they are currently looking into this, but where can I get a response? I am trying to surrender my current phone and watch for repair for the sake of public interest, even if it means sacrificing privacy, but I have no way to do so. What is even more ridiculous is that the paired watch does not match the watch name or the actual watch itself. It looks as if someone else's watch has been paired. The digital crown, gestures, and health sensors are not working. I am just using the watch as a speaker to listen to music. None of the functions work. If Developer Mode were enabled, I could force gestures to work through Accessibility, but Developer Mode won't turn on.
Replies
0
Boosts
0
Views
398
Activity
Aug ’26
cancel my pending Individual-to-Organization
Hello, I would like to cancel my pending Individual-to-Organization membership migration.
Replies
1
Boosts
0
Views
758
Activity
Aug ’26
TEST POST - please ignore, will delete shortly
This is a test post for security research purposes, will be deleted immediately after. Please disregard.
Replies
0
Boosts
0
Views
318
Activity
Aug ’26
Xcode 26 keeps telling you "Not Signed In" after you authorize Claude or Codex in the browser?
If you're on an Intel Mac, here's the reason and the fix. Cost me an evening, and I found nothing online except closed bug reports with the same symptom. The problem: The browser flow works fine. You authorize, the page confirms, Xcode acts like nothing happened, no error anywhere. Xcode only downloads the Apple Silicon (arm64) build of its agent binaries. On Intel they can't run at all. The process meant to receive your login dies instantly with "bad CPU type in executable" and Xcode never surfaces it. Check if this is you: file ~/Library/Developer/Xcode/CodingAssistant/Agents/claude/*/claude If it says arm64 and your Mac is Intel, that's the problem. The fix: Open the Info.plist next to the binary. It has the exact download URL. Download the x64 build of the same version. → Claude: change darwin-arm64 to darwin-x64 in that URL. → Codex: grab codex-x86_64-apple-darwin.tar.gz from the matching rust-v release on GitHub. Replace the binary and make it executable: chmod 755 Update the checksum in Info.plist. It's a plain SHA-512: shasum -a 512 Restart Xcode and sign in again. Bonus (Claude Pro / Max) Run claude setup-token in Terminal, then add the token to: ~/Library/Developer/Xcode/CodingAssistant/ClaudeAgentConfig/settings.json {"env": {"CLAUDE_CODE_OAUTH_TOKEN": "your-token"}} Pick "Authenticate with Configuration File" in the agent menu. Runs on your subscription no API key. Heads up: an Xcode update can re-download the wrong binary, so you may have to repeat this until Apple fixes the architecture detection.
Replies
1
Boosts
1
Views
1.1k
Activity
Aug ’26
ChatGPT in an Xcode 27.5 window won't clear last chat
I am using Xcode 27.5 beta along with the integration of Claude and Chatgpt sessions in the same project screen. When I post a message in a chat with Chatgpt, once it finished reading and replying back, the message I sent shows back up in the message box. I have to manually delete when I want to post a reply. Claude does not do this. Is there a setting I am missing? Thank You
Replies
0
Boosts
0
Views
252
Activity
Aug ’26
Dictionary Bundles not Scrolling when text expanded
Just posting this so it's documented somewhere. I think the onus is on apple to fix it, but I haven't seen this mentioned elsewhere. When a Dictionary.app entry's content grows taller after the entry has already loaded via /, a CSS-only checkbox/:checked toggle, or JavaScript toggling display/class, the WebView's internal layout correctly reflows to the new height, but the surrounding native scroll view's content size does not update to match. The added content is visible but expanded below the window and cannot be scrolled down to. Resizing the window or the sidebar within the dictionary app enables scrolling as expected, but then collapsing the content, without resizing you can still scroll to the prior (now empty) extent of the then-expanded section. Environment: macOS 26.5.1 Dictionary.app 2.3.0 Not sure how to find the DDK version but I'm pretty sure that doesn't matter
Replies
0
Boosts
0
Views
70
Activity
Aug ’26
Enrolment stuck and no response on emails or calls
Hello everyone, I recently enrolled in the Apple Developer Program, and my enrollment has been stuck on: “Your enrollment is being processed.” I’d like to ask the community/Apple support: How long did your enrollment take to get approved? Has anyone recently experienced the same delay? Did contacting Apple Developer Support help speed up the process? Is there anything specific I should do while the enrollment is being processed? Should I start a new application? I understand that enrollment may require verification, but the lack of progress is making it difficult to plan our development and app launch timeline. With a big marketingbudget and timelines this has become a significant challenge. Any recent experiences or advice would be greatly appreciated. Thank you!
Replies
2
Boosts
1
Views
108
Activity
Aug ’26
Security research sanitization test (self-delete in 30min)
Security research test post by the account owner (authorized Apple security research scope). This post verifies HTML sanitization behavior using benign canary tags only and will be deleted within 30 minutes. fcb-bold-canary fcb-italic-canary
Replies
0
Boosts
0
Views
89
Activity
Aug ’26
[cleared] security research test complete
Test complete; content cleared by author.
Replies
0
Boosts
0
Views
72
Activity
Aug ’26