Under Xcode -> Settings -> Intelligence -> Account it states "Not Signed In" An anthropic api key or claude.ai account is N/A
Is pretty sparse in actual details.
https://developer.apple.com/documentation/xcode/setting-up-coding-intelligence
Related:
https://developer.apple.com/forums/thread/814595
Overview
Selecting any option will automatically load the page
Post
Replies
Boosts
Views
Activity
I am writing to request a status update on my organization’s enrollment in the Apple Developer Program. Our application has been in "Pending" status for 10 days, and we have not received any requests for further documentation.
Please help to solve my issue
Topic:
Developer Tools & Services
SubTopic:
Apple Developer Program
Hi, Once I try to reset security question, it says:
"Your request could not be completed.
This action could not be completed due to an error. Please try again later."
So I am unable to access account. Please help!
Best Regards,
Hello,
When I recently distributed my app, I received the following warning message: "Starting April 2026, all visionOS apps must be built with the visionOS 26 SDK or later, included in Xcode 26 or later, in order to be uploaded to App Store Connect or submitted for distribution."
However, the Apple Developer News page dated February 3 (https://developer.apple.com/news/?id=ueeok6yw) states that apps submitted to the App Store must meet the version 26 requirement starting April 28, 2026.
I need to clarify whether the mandatory enforcement begins on April 1, 2026, or April 28, 2026. As the major specification changes in version 26 are significantly impacting our current app development, the exact deadline is critical for us to determine our updated development schedule.
https://developer.apple.com/forums/thread/814892
Thank you.
I get this message in my account: Developer Information Update In Process
Note: Your developer information update is currently in process. Until it’s complete, the updated Program License Agreement may not go into effect.
Why and what is going on is not clear, nothing has changed really. All accountdetails are applied and approved. Any idea what is going on and how to speed this "process" up?
Topic:
App Store Distribution & Marketing
SubTopic:
App Store Connect
I’m seeing a camera/capture routing issue on visionOS when multiple WindowGroups are open at the same time.
I have a SwiftUI view that starts an AVCaptureSession on onAppear and stops it on onDisappear. The camera feed is displayed in a subview that only exists inside one window.
However, when I open additional windows (other WindowGroups) in the same app, the camera perspective/route changes unexpectedly — it looks like the capture is being re-associated with a different scene/window, even though the camera view never moved and no other view starts capture.
Expected behavior
Opening additional windows should not affect the active capture session or camera routing for the existing camera view. The camera feed should remain stable and tied to the window hosting.
Actual behavior
When multiple windows are open, the camera feed “switches perspective” / appears to re-route, as if the system changes which scene is considered active for capture. This happens without any explicit code calling startSession() again and without the camera view being present in the other windows.
Additional context
This app is running in an unbounded scene and uses Unity PolySpatial.
I’ve honestly never received service this bad from a company and I don’t say that lightly. This is the worst support experience I’ve ever had.
I’m trying to enroll in the Apple Developer Program, but I’m stuck in a loop that has been going on for months:
The Apple Developer app repeatedly fails during identity verification and tells me there’s an issue.
When I contact support, they tell me they’ll email me instructions.
The email says: “Please use the Apple Developer app to enroll.”
I reply saying: “I did. It doesn’t work. The verification fails.”
And the response is again: “Use the Apple Developer app.”
Over and over, with no actual troubleshooting or escalation.
This is not a user-error situation — I’m following the instructions exactly. I need someone to look at what’s happening on Apple’s side (verification/enrollment status) and give a real resolution path, not the same copy-paste response.
Details:
Country/Region: [your region]
Devices tried: [iPhone model + iOS version], [Mac model + macOS version]
Exact error message shown in the app: [paste here]
Support case number (if relevant): 102784352083
What I’m asking:
Can Apple reset/clear my enrollment/verification state so I can retry cleanly?
Is there an official fix for this verification error?
Is there an alternative way to complete enrollment if the app keeps failing?
Can this be escalated to the enrollment/identity verification team?
Again: I’ve never experienced support this bad from any company. I just want to enroll and pay — but I’m blocked with no real help.
hi, first time submitter her, having problems with IAP and getting review approved.
Apple reviewer keeps saying that attempted purchase results in error:
subscription product not available. please try again later"
i have verified that sandbox returns a product,. how else can i test this without just submitting again?
Topic:
App Store Distribution & Marketing
SubTopic:
App Review
Use iTMSTransporter to upload the ipa file on Windows. ERROR: Client configuration failed
[2026-02-05 16:35:17 CST] INFO: iTMSTransporter Correlation Key: a97add20-898c-4d66-81c8-a1e313f2807e-0001
[2026-02-05 16:35:17 CST] DEBUG: DataCenter: contentdelivery01.itunes.apple.com
[2026-02-05 16:35:18 CST] DBG-X: Apple's web service operation return value:
[2026-02-05 16:35:18 CST] DBG-X: parameter DSToken = hidden value
[2026-02-05 16:35:18 CST] DBG-X: parameter DSTokenCookieName = myacinfo
[2026-02-05 16:35:18 CST] ERROR: Client configuration failed
Here is the error message.
Package Summary:
1 package(s) were not uploaded because they had problems:
C:\Users\Administrator\Desktop\bag\gsl222.ipa - Error Messages:
Client configuration failed
[2026-02-05 16:35:18 CST] DBG-X: Returning 1
Topic:
App Store Distribution & Marketing
SubTopic:
App Store Connect
I have a desktop application developed in SwiftUI that shows property locations on the map. That's NOT the main feature. IF you give the application permission to access your location, the blue dot will appear on the map. If you don't, the blue user dot won't appear. That's the only difference with location services. In other words, the application has no use of user's current position beyond showing it on the map. Since it's just the matter of showing or not showing the blue dot on the map, the application doesn't really need to use the location service. Anyway, the reviewer is talking about something else by rejecting the application in two aspects.
Guideline 5.1.1 - Legal - Privacy - Data Collection and Storage
Guideline 5.1.5 - Legal - Privacy - Location Services
As I said earlier, the application only wants to show the blue dot on the map so that you can see your property locations relative to your current location. In code, it's something like the following.
Map(position: $propertyViewModel.mapPosition) {
ForEach(propertyViewModel.properties) { property in
Annotation("", coordinate: CLLocationCoordinate2D(latitude: property.lat, longitude: property.lon)) {
...
}
}
UserAnnotation()
}
So I'm hit with two rejection reasons with this one line.
UserAnnotation()
And the reviewer is talking about something like
the app is not functional when Location Services are disabled.
To resolve this issue, please revise the app so that the app is fully functional without requiring the user to enable Location Services.
Well, I can remove the UserAnnotation() line if I want to put this application through the review process. Nothing will become dysfunctional, though, if you decide to reject permission request. So
would you remove it
or would you play along with this reviewer
if you were me? It's been three or four days since rejection. As you can imagine, the reviewer doesn't bother to answer as to
What are the exact coordinates that the application has allegedly collected
What won't work as a result of location permission request refusal.
This isn't the first time I get my app rejected. I've probably had 150 to 200 of them rejected in the past 15 years. And just because a reviewer rejects your app for a bizarre reason, would you give in? Remove this feature and that feature because the reviewer is incompetent such that he or she makes his or her decision based on imagination? What do you think?
Topic:
App Store Distribution & Marketing
SubTopic:
App Review
Tags:
App Review
Privacy
SwiftUI
Maps and Location
Hi everyone,
With the rapid growth of digital banking, payments, and AI-driven financial services, building secure and scalable FinTech apps on iOS has become more complex than ever. From handling sensitive user data to ensuring compliance and seamless performance, iOS developers face multiple technical challenges.
Key areas that usually require deep expertise include:
Apple Pay and Wallet integrations
Secure authentication (Face ID / Touch ID / biometrics)
Real-time transaction processing
Core ML for financial predictions
SwiftUI dashboards for financial analytics
Data encryption and regulatory compliance
https://www.nimbleappgenie.com
At Nimble AppGenie, we’ve worked extensively as a FinTech app development expert, helping startups and enterprises design and build iOS financial applications that are secure, scalable, and user-centric. Our experience shows that the most successful fintech apps are those that balance strong security architecture with intuitive UX and performance optimization.
I’m interested to hear from the community:
What are the biggest challenges you’ve faced while building fintech apps on iOS?
Are there any recent iOS updates or Apple frameworks that significantly improved your fintech workflows?
How are you handling compliance and security in production apps?
Looking forward to learning from everyone’s experiences and best practices.
I'm submitting my first macOS app (a native
SwiftUI menu bar app, signed with Developer ID
Application certificate, Hardened Runtime
enabled) for notarization using xcrun
notarytool submit with keychain profile
authentication.
All 9 of my submissions have been stuck at "In
Progress" for up to 16 hours. None have
transitioned to "Accepted" or "Invalid." Logs
are unavailable for all of them (notarytool
log returns "Submission log is not yet
available").
Environment
macOS: 26.2 (25C56)
Xcode: 26.1.1 (17B100)
notarytool: 1.1.0 (39)
App: Native SwiftUI, universal binary
(x86_64 + arm64), ~2.2 MB DMG
Bundle ID: com.gro.ask
Team ID: 4KT56S2BX6
What I've verified
Code signing is valid:
$ codesign --verify --deep --strict GroAsk.app
passes with no errors
$ codesign -dvvv GroAsk.app
Authority=Developer ID Application: Jack Wu
(4KT56S2BX6)
Authority=Developer ID Certification Authority
Authority=Apple Root CA
CodeDirectory flags=0x10000(runtime) #
Hardened Runtime enabled
Runtime Version=26.1.0
Format=app bundle with Mach-O universal
(x86_64 arm64)
Entitlements are minimal:
com.apple.security.app-sandbox
com.apple.security.network.client
Uploads succeed — each submission receives a
valid submission ID and the file uploads to
Apple's servers without error.
Submission history
Created (UTC): 04:40
ID: eeb12389-...
File: GroAsk-1.6.0.dmg
Status: Invalid (Hardened Runtime missing —
since fixed)
────────────────────────────────────────
Created (UTC): 04:42
ID: 6e537a32-...
File: GroAsk-1.6.0.dmg
Status: In Progress (16+ hrs)
────────────────────────────────────────
Created (UTC): 07:52
ID: 5ee41736-...
File: GroAsk-1.6.0.dmg
Status: In Progress
────────────────────────────────────────
Created (UTC): 08:19
ID: f5c6b9a5-...
File: GroAsk-1.6.0.dmg
Status: In Progress
────────────────────────────────────────
Created (UTC): 08:27
ID: 0f1c8333-...
File: GroAsk-1.6.0.dmg
Status: In Progress
────────────────────────────────────────
Created (UTC): 08:29
ID: 77fd9cd4-...
File: GroAsk-1.6.0.dmg
Status: In Progress
────────────────────────────────────────
Created (UTC): 08:51
ID: db9da93e-...
File: GroAsk-1.6.1.dmg
Status: In Progress
────────────────────────────────────────
Created (UTC): 09:05
ID: 3c43c09f-...
File: GroAsk.zip
Status: In Progress
────────────────────────────────────────
Created (UTC): 12:01
ID: b2267a74-...
File: GroAsk-1.6.3.dmg
Status: In Progress
────────────────────────────────────────
Created (UTC): 12:15
ID: ae41e45c-...
File: GroAsk.zip
Status: In Progress
The very first submission (eeb12389) came back
as Invalid within minutes because Hardened
Runtime wasn't enabled on the binary. I fixed
the build configuration and confirmed
flags=0x10000(runtime) is present on all
subsequent builds. However, every submission
after that fix has been stuck at "In Progress"
with no state transition.
What I've tried
Submitting both .dmg and .zip formats — same
result
Verified notarytool log — returns
"Submission log is not yet available" for all
stuck submissions
Apple Developer System Status page shows the
Notary Service as "Available"
I've also emailed Apple Developer Support
but have not received a response yet
Questions
Is this the expected behavior for a
first-time notarization account? I've seen
other threads mentioning that new accounts may
be held for "in-depth analysis," but 16+
hours with zero feedback seems excessive.
2. Is there any manual configuration Apple
needs to do on their end to unblock my team
for notarization?
3. Should I stop submitting and wait, or is
there something else I can try?
Any guidance from DTS would be greatly
appreciated. This is blocking the release of
my app.
When Live Caller ID first came out I experimented with it and got it working using the Example PIR database.
All my links from that time are now out of date and no longer work, however I seem to have found where the PIR database example and documentation has moved to (https://swiftpackageindex.com/apple/pir-service-example/main/documentation/pirservice/testinginstructionslivecalleridlookup)
But what I can't find is an exact definition of the the logo size/max size/dimensions/format should be.
My memory from that time is that it was very pernickety, and if things weren't exactly right, the logo wasn't displayed.
I can remember the format had to be HEIC to get it to work.
Looking through the documentation however, I can't see exact requirements specified.
My question is - for the Live Caller ID logo what are the exact image requirements, and where are they documented?
Hello everyone,
I am currently working on integrating a WebView into my macOS application, intended to allow users to browse tutorial webpages directly within the app.
Although I’ve followed an example that appears syntactically correct, the WebView does not render any webpage content.
Below is a code snippet for reference:
import SwiftUI
import WebKit
struct HelpWebView: View {
@State private var toggle = false
@State private var page = WebPage()
private var url: URL {
toggle
? URL(string: "https://www.webkit.org")!
: URL(string: "https://www.swift.org")!
}
var body: some View {
WebView(page)
.onAppear {
page.load(URLRequest(url: url))
}
.onChange(of: toggle) {
page.load(URLRequest(url: url))
}
.toolbar {
Button("Reload", systemImage: "arrow.clockwise") {
toggle.toggle()
}
}
}
}
I would greatly appreciate any insights or suggestions on what might be causing this issue or how to resolve it.
Thank you in advance for your help!
Hi, Apple developer community
We’re launching our first app and we’re really excited (and honestly a bit anxious) about the review process.
From the start, we used the Notes section to proactively answer any questions we could think of — including how the app works and complete test credentials. The first review took 3 days, and then we were asked for additional documentation. We provided everything within a couple of hours, and we also re-shared the same key information from Notes to make it easier for the reviewer.
Then another 3 days passed (which feels very long to us), and we received the exact same rejection again. It really seems like the reviewer isn’t reading our response or the Notes section. We can also see that they aren’t logging into the test account for some reason.
We’ve replied again with a detailed explanation, but it feels like we’re stuck in a strange loop of rejections.
What would you do in this situation? Why might a reviewer be overlooking the information even when it’s clearly provided both in Notes and in our reply? We’re building a genuinely useful product and we’re very concerned about what’s happening here.
Topic:
App Store Distribution & Marketing
SubTopic:
App Review
% curl -v https://app-site-association.cdn-apple.com/a/v1/zfcs.bankts.cn
Host app-site-association.cdn-apple.com:443 was resolved.
IPv6: (none)
IPv4: 218.92.226.151, 119.101.148.193, 218.92.226.6, 115.152.217.3
Trying 218.92.226.151:443...
Connected to app-site-association.cdn-apple.com (218.92.226.151) port 443
ALPN: curl offers h2,http/1.1
(304) (OUT), TLS handshake, Client hello (1):
CAfile: /etc/ssl/cert.pem
CApath: none
(304) (IN), TLS handshake, Server hello (2):
(304) (IN), TLS handshake, Unknown (8):
(304) (IN), TLS handshake, Certificate (11):
(304) (IN), TLS handshake, CERT verify (15):
(304) (IN), TLS handshake, Finished (20):
(304) (OUT), TLS handshake, Finished (20):
SSL connection using TLSv1.3 / AEAD-AES256-GCM-SHA384 / [blank] / UNDEF
ALPN: server accepted http/1.1
Server certificate:
subject: C=US; ST=California; O=Apple Inc.; CN=app-site-association.cdn-apple.com
start date: Sep 25 13:58:08 2025 GMT
expire date: Mar 31 17:44:25 2026 GMT
subjectAltName: host "app-site-association.cdn-apple.com" matched cert's "app-site-association.cdn-apple.com"
issuer: CN=Apple Public Server RSA CA 11 - G1; O=Apple Inc.; ST=California; C=US
SSL certificate verify ok.
using HTTP/1.x
GET /a/v1/zfcs.bankts.cn HTTP/1.1
Host: app-site-association.cdn-apple.com
User-Agent: curl/8.7.1
Accept: /
Request completely sent off
< HTTP/1.1 404 Not Found
< Content-Type: text/plain; charset=utf-8
< Content-Length: 10
< Connection: keep-alive
< Server: nginx
< Date: Wed, 04 Feb 2026 02:26:00 GMT
< Expires: Wed, 04 Feb 2026 02:26:10 GMT
< Age: 24
< Apple-Failure-Details: {"cause":"context deadline exceeded (Client.Timeout exceeded while awaiting headers)"}
< Apple-Failure-Reason: SWCERR00301 Timeout
< Apple-From: https://zfcs.bankts.cn/.well-known/apple-app-site-association
< Apple-Try-Direct: true
< Vary: Accept-Encoding
< Via: https/1.1 jptyo12-3p-pst-003.ts.apple.com (acdn/3.16363), http/1.1 jptyo12-3p-pac-043.ts.apple.com (acdn/3.16363), https/1.1 jptyo12-3p-pfe-002.ts.apple.com (acdn/3.16363)
< X-Cache: MISS KS-CLOUD
< CDNUUID: 736dc646-57fb-43c9-aa0d-eedad3a534f8-1154605242
< x-link-via: yancmp83:443;xmmp02:443;fzct321:443;
< x-b2f-cs-cache: no-cache
< X-Cache-Status: MISS from KS-CLOUD-FZ-CT-321-35
< X-Cache-Status: MISS from KS-CLOUD-XM-MP-02-16
< X-Cache-Status: MISS from KS-CLOUD-YANC-MP-83-15
< X-KSC-Request-ID: c4a640c815640ee93c263a357ee919d6
< CDN-Server: KSFTF
< X-Cdn-Request-ID: c4a640c815640ee93c263a357ee919d6
<
Not Found
Connection #0 to host app-site-association.cdn-apple.com left intact
Hi there, I'm trying to build my APP with EAS, unfortunately I can't log in the 2FA. I get the call from apple giving me the 2FA code and I enter it correctly but if gives me an error. So I read if I connect it to my laptop (macbook) it should work. However I try to connect my account to my macbook I just get another error:
Verification failed
Verification codes cannot be sent to this phone number at this time. Please try again later.
I suspect it is because I get the codes via voice call and not SMS. However: 1. I can't log into my account anymore as the 2FA always fails now. 2. I can't get SMS on my number. 3. I can't change number, there is also always an unknown error if I try that.
This is pretty frustrating especially given I already paid the 100€ for the developer account.
I’m having an issue verifying a domain for a Merchant ID. I’m implementing Apple Pay on the web for a demo, and I’ve configured the Azure server to match Apple’s requirements for domain verification, such as the TLS configuration, not requiring client certificates, and ensuring there are no redirects.
I’ve run tests with OpenSSL and PowerShell and all responses return HTTP/1.1 200 OK. I also tested the URL Apple says it uses to validate the file under .well-known, and it does show the expected result.
I already have the Apple Pay Payment Processing Certificate and the Apple Pay Merchant Identity Certificate approved; the only thing missing is the domain verification. I’m not sure what else to test—if you could help me with a possible solution, I’d really appreciate it. (The project is built in .NET 8 and hosted on Azure App Service.)
Ever since I have upgraded to iOS 26 (at least, I THINK this was when it started) I have been seeing an email account on Testflight purchase flows that is NOT mine. I have never seen this email in my life, and have not used it during the 10+ years I have been a developer.
I do not know how to make this use my Apple ID I am signed into on my device. However, locally signed builds from Xcode still work ok.
But I need Testflight builds to work as well.
How do I force this account to change?
Topic:
App Store Distribution & Marketing
SubTopic:
TestFlight
Tags:
StoreKit Test
StoreKit
TestFlight
My procedural animation using IKRig occasionally jitters and throws this warning. It completely breaks immersion.
getMoCapTask: Rig must be of type kCoreIKSolverTypePoseRetarget
Any idea where to start looking or what could be causing this?