Posts under Developer Tools & Services topic

Post

Replies

Boosts

Views

Activity

No Response to App Review Appeal After 2 Months – Requesting Urgent Assistance
Hello, I'm hoping someone from Apple or the community can help me get some clarity on my situation. Two months ago, my app was rejected by App Review, and I immediately filed a formal appeal. Since then, I have received absolutely no response — not an acknowledgment, not a status update, nothing. In the meantime, I have also reached out to Apple Developer Support via email on multiple occasions. Again, no response of any kind. I understand that review and appeal timelines can vary, but two months of complete silence — across both the appeal process and direct support emails — makes it very difficult to know whether my case is even being reviewed or if something has fallen through the cracks. If anyone from the App Review team or Apple Developer Relations sees this, I would appreciate any guidance you can offer. And if any developers have been in a similar situation, I'd like to know what worked. Thank you.
0
0
21
4h
Enrollment pending after document submission
Hi, My enrollment has been "Pending" for 3 business days after submitting the requested documents. Details: Country: Peru Entity: Individual Subscription paid: April 22, 2026 (PEN 389.90, confirmation received) Documents submitted and acknowledged on April 22 with a "follow-up within two business days" message Today (April 25): account still shows "Pendiente" with a prompt to pay again, even though payment is active I have an open Case ID with Apple Developer Support and can share it privately if a moderator needs to reference it. Is this delay normal right now? Posting here in case anyone has guidance or has experienced this recently. Thanks!
0
0
21
5h
Enrollment Deadlock: "Not authorized" for ID upload & "Enroll" button disabled in App
Hi everyone, I am completely stuck in an Apple Developer enrollment loop and could really use some advice, or hopefully an escalation if an Apple engineer sees this. Here is the exact sequence of what is happening: I attempted to enroll in the Apple Developer Program via the web portal. I completed the purchase step and received a purchase acknowledgment, but the funds were never deducted from my bank account. The developer portal still tells me I need to "complete the purchase." If I try again, it just repeats the same loop. I contacted Support, and they emailed me a link to upload my government ID for verification. When I click that link (ensuring I am fully logged into the correct Apple ID), I hit a dead end with this error: "Sorry, you don't have access. Your account isn't authorized to upload file." I searched the forums and saw the recommendation to use the Apple Developer App to bypass the web bugs. However, when I open the app, the "Enroll Now" button is completely disabled. It seems my account is locked in a "pending" state from the web attempts, which disabled the app enrollment, but I can't clear the pending state because I don't have the backend permissions to access the ID upload link Support sent me. Has anyone successfully broken out of this specific deadlock? Is there a specific phrasing I should use with Support to get them to just wipe the pending web transaction so I can start completely fresh from the iOS app? Thank you in advance for any guidance!
0
0
87
20h
Apple Developer Account deletion
I need help deleting my developer account. Whenever I try to contact developer support I receive the following error: Application error: a client-side exception has occurred while loading aninterestingwebsite.com I think I am receiving this error as I cannot update my country or phone number. My one and only phone number is already associated with my personal apple account. Apple developer support, please contact me. All I want to do is delete the developer account.
0
0
31
22h
Developer Program enrollment inactive after mobile purchase — no support response since April 21
Hi all, I enrolled in the Apple Developer Program through the Developer App on iPhone. The payment was processed successfully and I received the purchase confirmation, but my membership has never become active. Has anyone else experienced this after enrolling via the Developer App on mobile? Did it eventually resolve on its own, or did contacting support (phone, not email) help? Any guidance would be appreciated — I'm blocked from publishing. Thanks.
2
0
67
1d
Does your Canvas in Xcode crash all the time due to AXRemoteElement-BackgroundFetch?
Hi everyone, yesterday I updated my macOS and Xcode to the latest versions and today I have the strangest thing: Canvas is always crashing whenever I click it, in any and all my Projects. The full Simulator works just fine; only the Preview Canvas crashes. All the crash reports say it's because of AXRemoteElement-BackgroundFetch, and ChatGPT says it's not because of my code. These are very simple Projects, just for experimentation. Nothing complex, just native code while I follow examples in a SwiftUI book. Anyone else having this issue? Translated Report (Full Report Below) ------------------------------------- Process: PreviewShell [2179] Path: /Volumes/VOLUME/*/PreviewShell.app/PreviewShell Identifier: com.apple.PreviewShell Version: 16.0 (23.40.29) Code Type: ARM-64 (Native) Role: Foreground Parent Process: launchd_sim [1405] Coalition: com.apple.CoreSimulator.SimDevice.E9525D59-3C07-43F9-ACC9-18CF5DD0DAA1 [1516] Responsible Process: SimulatorTrampoline [1120] User ID: 501 Date/Time: 2026-03-26 15:00:02.6060 +0200 Launch Time: 2026-03-26 14:57:33.8870 +0200 Hardware Model: Mac17,9 OS Version: macOS 26.4 (25E246) Release Type: User Crash Reporter Key: 1DC4EA68-804A-D651-804B-C2E0C13D9B87 Incident Identifier: F3F1A52F-AFF9-4470-A216-7364FCB5B7E6 Time Awake Since Boot: 1100 seconds System Integrity Protection: enabled Triggered by Thread: 4, Dispatch Queue: AXRemoteElement-BackgroundFetch Exception Type: EXC_BAD_ACCESS (SIGBUS) Exception Subtype: KERN_PROTECTION_FAILURE at 0x000000016b6bfff0 Exception Message: Could not determine thread index for stack guard region Exception Codes: 0x0000000000000002, 0x000000016b6bfff0 Termination Reason: Namespace SIGNAL, Code 10, Bus error: 10 Terminating Process: exc handler [2179]
8
4
439
1d
Xcode 26.3 MCP xcode-tools: RunSomeTests / RunAllTests response violates tool output schema (missing required errors per test)
Xcode 26.3 MCP xcode-tools: RunSomeTests / RunAllTests response violates tool output schema (missing required errors per test) I’m using the MCP server “xcode-tools” shipped with Xcode 26.3 to run tests. Two tools fail consistently due to a schema mismatch: RunSomeTests RunAllTests Steps Call XcodeListWindows and get a valid tabIdentifier for my workspace. Call GetTestList with that tabIdentifier. This works and returns test identifiers like: ChatKitManagerCreationTests/testInitializesWithDependencies() Call RunSomeTests with tests = [{ targetName, testIdentifier }, …] (or call RunAllTests). Actual result The tool call fails with an MCP schema validation error like: Structured content does not match the tool's output schema: data/results/0 must have required property 'errors', data/results/1 must have required property 'errors', ... Why this looks like an xcode-tools bug According to the tool descriptor JSON for RunSomeTests / RunAllTests, each element of results[] is required to contain: targetName identifier displayName state errors (required, array of strings) But the actual response returned by RunSomeTests / RunAllTests appears to omit the errors field for one or more results (for passed tests it should still be present as an empty array []). Expected result RunSomeTests / RunAllTests always return structured content matching their declared output schema. In particular, every results[i] should include errors: [] when there are no errors. Environment Xcode: 26.3 macOS: Darwin 25.4.0 Workspace: Grocery.xcworkspace Scheme: GroceryCoreTests Active test plan: GroceryCoreTests Question Is this a known issue in Xcode 26.3’s MCP xcode-tools? Is there a workaround (e.g. alternative output mode, or reading a full summary file) until the schema/response is fixed?
0
0
18
1d
StatusCode 7000 "Team is not yet configured for notarization". It's been over five days, no resolution
Hi all, I'm submitting a Developer ID-signed, hardened-runtime app for notarization. Every submission returns: "statusCode: 7000 statusSummary: Team is not yet configured for notarization. Please contact Developer Programs Support..." Team ID: V67NRZ84A2. Apple Developer membership is active, Developer ID Application certificate is valid, signing/verification all clean. Already opened a support case last week via the recommended path. The "contact page" on the developer site said Apple usually responds within 2 business days.... Has anyone hit this and gotten it resolved? How long did it take, and was there a more effective channel than the standard support form? I've seen people on Reddit claim they've actually been able to call a Developer phone line, but I haven't seen a valid phone number anywhere. I appreciate your response!
0
0
15
1d
Error Domain=NSURLErrorDomain Code=-1000 "bad URL"
Some mobile phones frequently report an error "bad URL" with the domain set to NSURLErrorDomain and the code set to -1000. However, I never encounter this error, and I'm not sure what's going wrong,The error log is as follows: HttpInterceptor:81 didReceive(_:target:): moya error: underlying(Alamofire.AFError.sessionTaskFailed(error: Error Domain=NSURLErrorDomain Code=-1000 "bad URL" UserInfo={_kCFStreamErrorCodeKey=22, NSUnderlyingError=0x1119f91d0 {Error Domain=kCFErrorDomainCFNetwork Code=-1000 "(null)" UserInfo={_NSURLErrorNWPathKey=satisfied (Path is satisfied), interface: utun4[endc_sub6], ipv4, dns, uses cell, LQM: unknown, _kCFStreamErrorCodeKey=22, _kCFStreamErrorDomainKey=1}}, _NSURLErrorFailingURLSessionTaskErrorKey=LocalDataTask <7FF86D00-1379-43D4-9F9B-0C300AEC57C8>.<4>, _NSURLErrorRelatedURLSessionTaskErrorKey=( "LocalDataTask <7FF86D00-1379-43D4-9F9B-0C300AEC57C8>.<4>" ), NSLocalizedDescription=bad URL, NSErrorFailingURLStringKey=https://update.flashforge.com/api/updates/check?app_id=46&entity_id=9E8D3B0C-2E61-46AF-91B9-B4AFFACF2788&platform=23&version=v1.3.4, NSErrorFailingURLKey=https://update.flashforge.com/api/updates/check?app_id=46&entity_id=9E8D3B0C-2E61-46AF-91B9-B4AFFACF2788&platform=23&version=v1.3.4, _kCFStreamErrorDomainKey=1}), nil)
0
0
11
1d
Unable to enroll into the Apple Developer Program
Hello! Every time I attempt to enroll into the program I get hit with one of the following two errors: Unknown Error Please try again. Apple ID Issue The region of the Apple ID that's signed in to Settings or System Preferences is different than the region of the Apple ID with which you signed into the Apple Developer app. Sign in to Settings or System Preferences with an Apple ID that has the same region. I’m very confused by this message because I have never changed the region of my Apple ID - it should be United States. How can I complete my enrollment?
17
6
42k
1d
Distributing In House Apps via my OWN website
Good morning. I have an APPLE DEVELOPER ACCOUNT. I am inquiring about Distributing In House Apps using my own website. All the links so far do not help. They all seem to be relevant to the Apple Store and not In House apps. I have my apps ready for evaluation. I understand you need to evaluate them. I want to apply for a certificate that will allow me to put the apps on my OWN website and have users download these and install to their Apple devices. So far I have been testing using own devices but every build I create does NOT create a manifest file. They do work but obviously I need a manifest for the website. I assume a relevant certificate would provide that. Can you please let me know of any and all information that applies on how to apply for an In House Distribution Certificate and how and where I should upload my apps for evaluation. Thank you so much. John
10
0
180
1d
unable to create tasks to copy stub binary
Pulling my hair out here. After upgrading to Xcode Version 26.4.1 (17E202) I've started getting "unable to create tasks to copy stub binary: can't determine architectures of binary: /Applications/Xcode.app/Contents/Developer/Platforms/WatchSimulator.platform/Library/Application Support/MessagesApplicationStub/MessagesApplicationStub: Cannot open file handle for file at path: /Applications/Xcode.app/Contents/Developer/Platforms/WatchSimulator.platform/Library/Application Support/MessagesApplicationStub/MessagesApplicationStub: The file “MessagesApplicationStub” doesn’t exist." No matter what I do when trying to run the build (worked in previous versions). I've tried fresh install from App Store, direct package download, removing the SDKs, even previous versions and no matter what I get
1
0
134
1d
注册 Apple Developer 提示:你的账户可能存在问题,需要解决后才能继续注册流程。请与支持团队联系。
我在注册 Apple Developer 个人账号时,遇到如下错误提示: 你的账户可能存在问题,需要解决后才能继续注册流程。请与支持团队联系。 我的情况: Apple ID:使用 gmail 和163邮箱注册在十几年前注册,并一直使用到今天(具体邮箱地址可在后续沟通中提供) 已开启双重认证,信息真实完整。 联系苹果客服后,一直没有告诉我具体的解决方式,就说我的账号信息在中国大陆由第三方去验证他们没有办法核查具体出了什么原因。 我因为急着上架APP所以用我父亲的身份证去注册了新的苹果账号并成功发布App,但是有些情况会导致麻烦,所以我还是想注册自己的苹果开发者账户。 希望得到帮助: 请协助排查我的 Apple ID 存在什么问题。 告知需要补充哪些材料或操作来解除限制。 指导我如何继续完成 Apple Developer 注册。 感谢!
1
0
96
1d
Charged $99 for Apple Developer Program but enrollment blocked single name from Indonesia, anyone dealt with this?
So I've been dealing with this for over 2 weeks and honestly losing my mind a bit. Background: I'm Indonesian. In Indonesia it's totally legal and common to have a single name on your ID, no first or last name, just one name. When I filled out the enrollment form I put the same name in both fields since it required both. What happened: Got charged $99, Apple invoice confirmed, bank confirmed Developer portal: "your enrollment could not be completed" Tried the Developer app: "enrollment through app could not be completed on this account" Support has replied twice basically saying "try the Developer app" — which doesn't work I have an open case but it's going in circles. Has anyone here dealt with single-name enrollment issues with Apple Developer? Especially from Indonesia or India or anywhere with similar naming conventions? Or any tips for actually getting a human at Apple to manually fix this? Email support feels like a wall.
1
0
39
1d
Membership renewal not reflected
Our Apple Developer Program membership renewal is facing an issue from Apple’s side. The membership section shows that the annual fee is marked as "waived", but the developer portal still shows that our membership has expired. Even after multiple follow-ups with Apple support, the issue has not been resolved. Additionally, our apps have become unavailable on the App Store due to this issue. These applications are used for public service delivery / judicial stakeholders, and the outage is affecting users. This is a critical issue for us, and we would appreciate guidance or escalation support from Apple staff/community moderators.
1
0
41
1d
No Response to App Review Appeal After 2 Months – Requesting Urgent Assistance
Hello, I'm hoping someone from Apple or the community can help me get some clarity on my situation. Two months ago, my app was rejected by App Review, and I immediately filed a formal appeal. Since then, I have received absolutely no response — not an acknowledgment, not a status update, nothing. In the meantime, I have also reached out to Apple Developer Support via email on multiple occasions. Again, no response of any kind. I understand that review and appeal timelines can vary, but two months of complete silence — across both the appeal process and direct support emails — makes it very difficult to know whether my case is even being reviewed or if something has fallen through the cracks. If anyone from the App Review team or Apple Developer Relations sees this, I would appreciate any guidance you can offer. And if any developers have been in a similar situation, I'd like to know what worked. Thank you.
Replies
0
Boosts
0
Views
21
Activity
4h
Stuck on "Sending analysis to App Store Connect
Hey, im running a MacBook Pro m2 26.4.1 and Xcode 26.4. I'm trying to upload to App Store Connect and it's getting stuck on "Sending analysis to App Store Connect".... now what's interesting my Mac mini m4. same iOS works fine? Any ideas
Replies
2
Boosts
0
Views
138
Activity
5h
Enrollment pending after document submission
Hi, My enrollment has been "Pending" for 3 business days after submitting the requested documents. Details: Country: Peru Entity: Individual Subscription paid: April 22, 2026 (PEN 389.90, confirmation received) Documents submitted and acknowledged on April 22 with a "follow-up within two business days" message Today (April 25): account still shows "Pendiente" with a prompt to pay again, even though payment is active I have an open Case ID with Apple Developer Support and can share it privately if a moderator needs to reference it. Is this delay normal right now? Posting here in case anyone has guidance or has experienced this recently. Thanks!
Replies
0
Boosts
0
Views
21
Activity
5h
Apple Developer Program enrollment
My Apple Developer Program enrollment has been pending for 2 weeks. I've submitted my documents over a week ago, but have still not received any update! Please address this as soon as possible. Order Number: W1611570250
Replies
2
Boosts
1
Views
116
Activity
5h
Enrollment Deadlock: "Not authorized" for ID upload & "Enroll" button disabled in App
Hi everyone, I am completely stuck in an Apple Developer enrollment loop and could really use some advice, or hopefully an escalation if an Apple engineer sees this. Here is the exact sequence of what is happening: I attempted to enroll in the Apple Developer Program via the web portal. I completed the purchase step and received a purchase acknowledgment, but the funds were never deducted from my bank account. The developer portal still tells me I need to "complete the purchase." If I try again, it just repeats the same loop. I contacted Support, and they emailed me a link to upload my government ID for verification. When I click that link (ensuring I am fully logged into the correct Apple ID), I hit a dead end with this error: "Sorry, you don't have access. Your account isn't authorized to upload file." I searched the forums and saw the recommendation to use the Apple Developer App to bypass the web bugs. However, when I open the app, the "Enroll Now" button is completely disabled. It seems my account is locked in a "pending" state from the web attempts, which disabled the app enrollment, but I can't clear the pending state because I don't have the backend permissions to access the ID upload link Support sent me. Has anyone successfully broken out of this specific deadlock? Is there a specific phrasing I should use with Support to get them to just wipe the pending web transaction so I can start completely fresh from the iOS app? Thank you in advance for any guidance!
Replies
0
Boosts
0
Views
87
Activity
20h
Apple Developer Account deletion
I need help deleting my developer account. Whenever I try to contact developer support I receive the following error: Application error: a client-side exception has occurred while loading aninterestingwebsite.com I think I am receiving this error as I cannot update my country or phone number. My one and only phone number is already associated with my personal apple account. Apple developer support, please contact me. All I want to do is delete the developer account.
Replies
0
Boosts
0
Views
31
Activity
22h
Developer Program enrollment inactive after mobile purchase — no support response since April 21
Hi all, I enrolled in the Apple Developer Program through the Developer App on iPhone. The payment was processed successfully and I received the purchase confirmation, but my membership has never become active. Has anyone else experienced this after enrolling via the Developer App on mobile? Did it eventually resolve on its own, or did contacting support (phone, not email) help? Any guidance would be appreciated — I'm blocked from publishing. Thanks.
Replies
2
Boosts
0
Views
67
Activity
1d
problem with apple developer enrollment
Hey team. I can't enroll my account. I don't have any responses and details about it. please help me finish enrollment, pay money and start to build my app.
Replies
1
Boosts
0
Views
45
Activity
1d
Does your Canvas in Xcode crash all the time due to AXRemoteElement-BackgroundFetch?
Hi everyone, yesterday I updated my macOS and Xcode to the latest versions and today I have the strangest thing: Canvas is always crashing whenever I click it, in any and all my Projects. The full Simulator works just fine; only the Preview Canvas crashes. All the crash reports say it's because of AXRemoteElement-BackgroundFetch, and ChatGPT says it's not because of my code. These are very simple Projects, just for experimentation. Nothing complex, just native code while I follow examples in a SwiftUI book. Anyone else having this issue? Translated Report (Full Report Below) ------------------------------------- Process: PreviewShell [2179] Path: /Volumes/VOLUME/*/PreviewShell.app/PreviewShell Identifier: com.apple.PreviewShell Version: 16.0 (23.40.29) Code Type: ARM-64 (Native) Role: Foreground Parent Process: launchd_sim [1405] Coalition: com.apple.CoreSimulator.SimDevice.E9525D59-3C07-43F9-ACC9-18CF5DD0DAA1 [1516] Responsible Process: SimulatorTrampoline [1120] User ID: 501 Date/Time: 2026-03-26 15:00:02.6060 +0200 Launch Time: 2026-03-26 14:57:33.8870 +0200 Hardware Model: Mac17,9 OS Version: macOS 26.4 (25E246) Release Type: User Crash Reporter Key: 1DC4EA68-804A-D651-804B-C2E0C13D9B87 Incident Identifier: F3F1A52F-AFF9-4470-A216-7364FCB5B7E6 Time Awake Since Boot: 1100 seconds System Integrity Protection: enabled Triggered by Thread: 4, Dispatch Queue: AXRemoteElement-BackgroundFetch Exception Type: EXC_BAD_ACCESS (SIGBUS) Exception Subtype: KERN_PROTECTION_FAILURE at 0x000000016b6bfff0 Exception Message: Could not determine thread index for stack guard region Exception Codes: 0x0000000000000002, 0x000000016b6bfff0 Termination Reason: Namespace SIGNAL, Code 10, Bus error: 10 Terminating Process: exc handler [2179]
Replies
8
Boosts
4
Views
439
Activity
1d
Xcode 26.3 MCP xcode-tools: RunSomeTests / RunAllTests response violates tool output schema (missing required errors per test)
Xcode 26.3 MCP xcode-tools: RunSomeTests / RunAllTests response violates tool output schema (missing required errors per test) I’m using the MCP server “xcode-tools” shipped with Xcode 26.3 to run tests. Two tools fail consistently due to a schema mismatch: RunSomeTests RunAllTests Steps Call XcodeListWindows and get a valid tabIdentifier for my workspace. Call GetTestList with that tabIdentifier. This works and returns test identifiers like: ChatKitManagerCreationTests/testInitializesWithDependencies() Call RunSomeTests with tests = [{ targetName, testIdentifier }, …] (or call RunAllTests). Actual result The tool call fails with an MCP schema validation error like: Structured content does not match the tool's output schema: data/results/0 must have required property 'errors', data/results/1 must have required property 'errors', ... Why this looks like an xcode-tools bug According to the tool descriptor JSON for RunSomeTests / RunAllTests, each element of results[] is required to contain: targetName identifier displayName state errors (required, array of strings) But the actual response returned by RunSomeTests / RunAllTests appears to omit the errors field for one or more results (for passed tests it should still be present as an empty array []). Expected result RunSomeTests / RunAllTests always return structured content matching their declared output schema. In particular, every results[i] should include errors: [] when there are no errors. Environment Xcode: 26.3 macOS: Darwin 25.4.0 Workspace: Grocery.xcworkspace Scheme: GroceryCoreTests Active test plan: GroceryCoreTests Question Is this a known issue in Xcode 26.3’s MCP xcode-tools? Is there a workaround (e.g. alternative output mode, or reading a full summary file) until the schema/response is fixed?
Replies
0
Boosts
0
Views
18
Activity
1d
StatusCode 7000 "Team is not yet configured for notarization". It's been over five days, no resolution
Hi all, I'm submitting a Developer ID-signed, hardened-runtime app for notarization. Every submission returns: "statusCode: 7000 statusSummary: Team is not yet configured for notarization. Please contact Developer Programs Support..." Team ID: V67NRZ84A2. Apple Developer membership is active, Developer ID Application certificate is valid, signing/verification all clean. Already opened a support case last week via the recommended path. The "contact page" on the developer site said Apple usually responds within 2 business days.... Has anyone hit this and gotten it resolved? How long did it take, and was there a more effective channel than the standard support form? I've seen people on Reddit claim they've actually been able to call a Developer phone line, but I haven't seen a valid phone number anywhere. I appreciate your response!
Replies
0
Boosts
0
Views
15
Activity
1d
Error Domain=NSURLErrorDomain Code=-1000 "bad URL"
Some mobile phones frequently report an error "bad URL" with the domain set to NSURLErrorDomain and the code set to -1000. However, I never encounter this error, and I'm not sure what's going wrong,The error log is as follows: HttpInterceptor:81 didReceive(_:target:): moya error: underlying(Alamofire.AFError.sessionTaskFailed(error: Error Domain=NSURLErrorDomain Code=-1000 "bad URL" UserInfo={_kCFStreamErrorCodeKey=22, NSUnderlyingError=0x1119f91d0 {Error Domain=kCFErrorDomainCFNetwork Code=-1000 "(null)" UserInfo={_NSURLErrorNWPathKey=satisfied (Path is satisfied), interface: utun4[endc_sub6], ipv4, dns, uses cell, LQM: unknown, _kCFStreamErrorCodeKey=22, _kCFStreamErrorDomainKey=1}}, _NSURLErrorFailingURLSessionTaskErrorKey=LocalDataTask <7FF86D00-1379-43D4-9F9B-0C300AEC57C8>.<4>, _NSURLErrorRelatedURLSessionTaskErrorKey=( "LocalDataTask <7FF86D00-1379-43D4-9F9B-0C300AEC57C8>.<4>" ), NSLocalizedDescription=bad URL, NSErrorFailingURLStringKey=https://update.flashforge.com/api/updates/check?app_id=46&entity_id=9E8D3B0C-2E61-46AF-91B9-B4AFFACF2788&platform=23&version=v1.3.4, NSErrorFailingURLKey=https://update.flashforge.com/api/updates/check?app_id=46&entity_id=9E8D3B0C-2E61-46AF-91B9-B4AFFACF2788&platform=23&version=v1.3.4, _kCFStreamErrorDomainKey=1}), nil)
Replies
0
Boosts
0
Views
11
Activity
1d
Unable to enroll into the Apple Developer Program
Hello! Every time I attempt to enroll into the program I get hit with one of the following two errors: Unknown Error Please try again. Apple ID Issue The region of the Apple ID that's signed in to Settings or System Preferences is different than the region of the Apple ID with which you signed into the Apple Developer app. Sign in to Settings or System Preferences with an Apple ID that has the same region. I’m very confused by this message because I have never changed the region of my Apple ID - it should be United States. How can I complete my enrollment?
Replies
17
Boosts
6
Views
42k
Activity
1d
Distributing In House Apps via my OWN website
Good morning. I have an APPLE DEVELOPER ACCOUNT. I am inquiring about Distributing In House Apps using my own website. All the links so far do not help. They all seem to be relevant to the Apple Store and not In House apps. I have my apps ready for evaluation. I understand you need to evaluate them. I want to apply for a certificate that will allow me to put the apps on my OWN website and have users download these and install to their Apple devices. So far I have been testing using own devices but every build I create does NOT create a manifest file. They do work but obviously I need a manifest for the website. I assume a relevant certificate would provide that. Can you please let me know of any and all information that applies on how to apply for an In House Distribution Certificate and how and where I should upload my apps for evaluation. Thank you so much. John
Replies
10
Boosts
0
Views
180
Activity
1d
unable to create tasks to copy stub binary
Pulling my hair out here. After upgrading to Xcode Version 26.4.1 (17E202) I've started getting "unable to create tasks to copy stub binary: can't determine architectures of binary: /Applications/Xcode.app/Contents/Developer/Platforms/WatchSimulator.platform/Library/Application Support/MessagesApplicationStub/MessagesApplicationStub: Cannot open file handle for file at path: /Applications/Xcode.app/Contents/Developer/Platforms/WatchSimulator.platform/Library/Application Support/MessagesApplicationStub/MessagesApplicationStub: The file “MessagesApplicationStub” doesn’t exist." No matter what I do when trying to run the build (worked in previous versions). I've tried fresh install from App Store, direct package download, removing the SDKs, even previous versions and no matter what I get
Replies
1
Boosts
0
Views
134
Activity
1d
Add option to hide read posts
It would be helpful to have a filter option to hide read posts when browsing or searching the Apple Developer Forums. FB22575662 https://github.com/feedback-assistant/reports/issues/793
Replies
5
Boosts
0
Views
226
Activity
1d
注册 Apple Developer 提示:你的账户可能存在问题,需要解决后才能继续注册流程。请与支持团队联系。
我在注册 Apple Developer 个人账号时,遇到如下错误提示: 你的账户可能存在问题,需要解决后才能继续注册流程。请与支持团队联系。 我的情况: Apple ID:使用 gmail 和163邮箱注册在十几年前注册,并一直使用到今天(具体邮箱地址可在后续沟通中提供) 已开启双重认证,信息真实完整。 联系苹果客服后,一直没有告诉我具体的解决方式,就说我的账号信息在中国大陆由第三方去验证他们没有办法核查具体出了什么原因。 我因为急着上架APP所以用我父亲的身份证去注册了新的苹果账号并成功发布App,但是有些情况会导致麻烦,所以我还是想注册自己的苹果开发者账户。 希望得到帮助: 请协助排查我的 Apple ID 存在什么问题。 告知需要补充哪些材料或操作来解除限制。 指导我如何继续完成 Apple Developer 注册。 感谢!
Replies
1
Boosts
0
Views
96
Activity
1d
App stuck in App Store Review, flagged for expedite
Hi, my app (App ID: 6758626744, Team ID: H4DH43B9X7) has been stuck in a review cycle for 10 days, after flagged it in expedite. i had no answer so far, and we missed already an important financial deadline please help us review it asap
Replies
0
Boosts
0
Views
17
Activity
1d
Charged $99 for Apple Developer Program but enrollment blocked single name from Indonesia, anyone dealt with this?
So I've been dealing with this for over 2 weeks and honestly losing my mind a bit. Background: I'm Indonesian. In Indonesia it's totally legal and common to have a single name on your ID, no first or last name, just one name. When I filled out the enrollment form I put the same name in both fields since it required both. What happened: Got charged $99, Apple invoice confirmed, bank confirmed Developer portal: "your enrollment could not be completed" Tried the Developer app: "enrollment through app could not be completed on this account" Support has replied twice basically saying "try the Developer app" — which doesn't work I have an open case but it's going in circles. Has anyone here dealt with single-name enrollment issues with Apple Developer? Especially from Indonesia or India or anywhere with similar naming conventions? Or any tips for actually getting a human at Apple to manually fix this? Email support feels like a wall.
Replies
1
Boosts
0
Views
39
Activity
1d
Membership renewal not reflected
Our Apple Developer Program membership renewal is facing an issue from Apple’s side. The membership section shows that the annual fee is marked as "waived", but the developer portal still shows that our membership has expired. Even after multiple follow-ups with Apple support, the issue has not been resolved. Additionally, our apps have become unavailable on the App Store due to this issue. These applications are used for public service delivery / judicial stakeholders, and the outage is affecting users. This is a critical issue for us, and we would appreciate guidance or escalation support from Apple staff/community moderators.
Replies
1
Boosts
0
Views
41
Activity
1d