Search results for

“show when run”

115,098 results found

Post

Replies

Boosts

Views

Activity

Membership Purchase Complete, account status pending after 1 week
Hello I have buy new developepr membership and i have get email for purchase confirmation but when ihave go to developer account i have seen this. Purchase your membership. To continue your enrollment, complete your purchase now. Your purchase may take up to 48 hours to process. Please help me why it will show this if I have already bought the membership? I have confirmed with the bank that the money has been taken away from my account a week ago.
0
0
26
1w
Apple Developer Program enrollment pending for over a week — any way to escalate?
Hi everyone, I submitted my Apple Developer Program enrollment on 4/12/2025 and it’s now been over a week with the status still showing as pending. I haven’t received any emails requesting additional information, and my account, payment method, and identity details all look correct on my end. Details: • Enrollment type: Individual • Region: United States Tx • Current status: Pending
0
0
87
1w
Storefront.current?.countryCode returns inconsistent values in TestFlight builds
Hi, We're experiencing inconsistent and unexpected values returned by Storefront.current?.countryCode when running our app via TestFlight. In our case: The device region and locale are set to Poland The App Store account (Media & Purchases) is also set to Poland However, when running a TestFlight build, Storefront.current?.countryCode sometimes returns a completely different value (e.g. NO for Norway), which does not match the current App Store account configuration. Here's the code we're using: if #available(iOS 15.0, *) { let code = await Storefront.current?.countryCode print(Storefront countryCode:, code ?? nil) } What's particularly confusing: Across different devices logged into the same App Store account, we sometimes receive different countryCode values The returned value does not seem to reflect the current App Store region or device settings We understand that Storefront reflects the App Store storefront and not the device locale, but in this case the value appears stale or inco
1
0
83
1w
Manual FairPlay License Renewal: AVContentKeySessionDelegate not triggering via addContentKeyRecipient
Hi everyone, I am working on an app that supports offline playback with FairPlay Streaming (FPS). I have successfully implemented the logic to download and persist the content keys (TLLV), and offline playback is working correctly using the stored persistent keys. However, I am now trying to implement a manual renewal process for these licenses, and I’ve run into an issue where the delegate methods are not being fired as expected. The Issue: I am calling contentKeySession.addContentKeyRecipient(asset) to force a renewal or re-fetch of the content key for a specific asset. Even though the asset is correctly initialized and the session is active, the AVContentKeySessionDelegate methods (specifically contentKeySession(_:didProvide:)) are not being triggered at all. My Questions: Why is the delegate not firing when adding the recipient? Is there a specific state or property the AVURLAsset needs to have (or a specific way it should be initialized) to trigger a new key request via addContentKeyRecipient? I
3
0
591
1w
App Store Connect version record stuck in 409 — Case #102865399563 silent 12 days despite 3 follow-ups
Hi all — this is genuinely urgent for us and I'd really appreciate any help. We've been fully blocked from shipping updates for almost two weeks, and Feedback Assistant has been completely silent. Posting here as a last resort to get the issue in front of someone who can route it. Our app (1.0.0 live on App Store, CN region) has a version record stuck in a broken backend state since April 9. Every recovery path fails at the Apple backend layer. Version record ID: 00ae0692-f94d-4632-a369-a9b230788330 Case: #102865399563 Symptoms via ASC web UI: Version shows Prepare for Submission Save fails with red error icon, no message shown DevTools Network shows: 409 ENTITY_ERROR.RELATIONSHIP.INVALID on /data/relationships/build + button to create next version is hidden while this record is in Prepare for Submission state Symptoms via ASC API (all paths tried, all 409): DELETE /v1/appStoreVersions/{id} → 409 STATE_ERROR Only the first version of any platform can be deleted PATCH /v1/appStoreVersions/{id
0
0
54
1w
visionOS: AVFoundation cannot deliver simultaneous video from two external (UVC) cameras; no public USB fallback exists
Area: visionOS 26.4 · AVFoundation · AVCapture · External/UVC video Classification: Suggestion / API Enhancement Request (also: Incorrect/Missing Documentation) Device / OS: Apple Vision Pro, visionOS 26.x. Xcode 26.4.1, XROS26.4.sdk. Summary On visionOS, a third-party app cannot display two UVC USB cameras (connected through a powered USB-C hub) at the same time. Every AVFoundation path that would enable this on iPadOS is either unavailable or fails at runtime on visionOS, and there is no public non-AVFoundation fallback (no IOUSBHost, no DriverKit, no usable CoreMediaIO, no MFi path for generic UVC devices). This is a real capability gap relative to iPadOS and macOS, and Camo Studio on iPadOS (App Store ID 6450313385) demonstrates the two-camera USB-hub use case is legitimate and valuable for spatial-video/hybrid-capture workflows on Vision Pro. Steps to reproduce Connect a powered USB-C hub to Apple Vision Pro with two UVC webcams attached. Build a visionOS app that uses AVCaptureDevice.DiscoverySession(de
1
0
970
1w
Enrollment Issue: Developer Program Membership Payment Not Reflected
Dear Apple Developer Support Team, I am writing to request assistance with my Apple Developer Program membership status. On Wednesday, April 15, I completed the payment of $99 for a one-year individual membership. However, five days have passed, and my account status has not yet been updated. When I log into the Apple Developer portal, it continues to prompt me to Purchase Membership rather than showing my account as active. Could you please review my account and manually update the enrollment status so I can begin using the developer services? If there is any additional information required from my side, please let me know. Thank you for your time and assistance. Best regards, Ibrahim Asery
1
0
96
1w
Notice of Termination - Indie dev from Angola
Hello, I'm an indie developer residing in Angola and founder of ADA - Apple Developer Angola, a community for Apple developers. I recently received news that my account was closed due to errors I take responsibility for. All I would like from Apple is an opportunity to do the right thing. Seeing my account blocked has greatly impacted my career. I regret my actions and simply want a chance to show that I will do the right thing.
0
0
30
1w
Subscription Status - Missing Metadata
Hello Support Team member - I hope you are having a good day. My app has been approved and I manually released it 8 hours ago. Currently users do not see the subscriptions available on the paywall, and the subscriptions do not show up under in-app purchases in the app store. When I look at my subscriptions in AppStoreConnect - they say Missing Metadata. When I look inside the subscriptions - one of the two has a localization that is showing a status of Prepare for Submission. The other subscription does not have a localization - and there is nothing within the subscription that has a yellow warning alert. How can I resolve this? Thank you much!
3
0
94
1w
HKAnchoredObjectQuery ignores "no correlation" predicate in updateHandler
Hello, I'm seeing an inconsistency in how HKAnchoredObjectQuery applies predicates between its initial results handler and its update handler. Specifically, predicates that filter quantity samples by correlation membership - using either HKQuery.predicateForObjectsWithNoCorrelation() or NSPredicate(format: %K == nil, HKPredicateKeyPathCorrelation) - are respected in the resultsHandler but silently ignored in the updateHandler. Setup I have three long-running HKAnchoredObjectQuery instances: One for HKCorrelationType(.bloodPressure) - no predicate One for HKQuantityType(.bloodPressureSystolic) - predicate: HKQuery.predicateForObjectsWithNoCorrelation() One for HKQuantityType(.bloodPressureDiastolic) - predicate: HKQuery.predicateForObjectsWithNoCorrelation() The intent of the predicate on the systolic/diastolic queries is to capture only standalone quantity samples written directly by third-party apps - not the constituent sub-samples of an HKCorrelation. The correlation query handles correlated sampl
1
0
81
1w
Reply to iCloud Drive silent upload deadlock caused by stale HTTP/3 session in nsurlsessiond (FB22476701)
Follow-up — post-submission PCAP analysis of the filtered QUIC capture from the 2026-04-21 reproduction (attached to FB22476701, third update). Analysed with tshark 4.6.4 for QUIC long-header parsing; Initial + Handshake packets are decryptable per RFC 9001 §5.2 (keys derived from DCID). 1-RTT STREAM payloads remain opaque — nsurlsessiond does not export SSLKEYLOGFILE. The 102 s deadlock window is quantifiable on the wire: Last pre-gap packet: 20:09:51.802 (Client→Server, protected, port 51943) First post-gap packet: 20:11:34.625 (Client→Server, fresh Initial on new port 50715) 102.823 s with zero packets in either direction — no client PING, no keepalive, no probe, no CONNECTION_CLOSE The same missing-wakeup pattern was already documented earlier the same evening via sample on cloudd during a reactive-capture repro: the main thread, CFStream.LegacyThread and NSURLConnectionLoader all at 8627/8627 samples blocked in mach_msg2_trap. The user-space thread stacks and the UDP flow tell the same story from two ang
1w
Reply to adding CarPlay extension to iOS app
Thanks for the post. This is where I would recommend to start: https://developer.apple.com/documentation/carplay/requesting-carplay-entitlements https://developer.apple.com/download/files/CarPlay-Developer-Guide.pdf After you go over the CarPlay development relies on the MediaPlayer framework to show these buttons , you need to register targets with MPRemoteCommandCenter. Add this configuration wherever you set up your audio player. Make sure you are also setting your MPNowPlayingInfoCenter.default().nowPlayingInfo with the track title, artist, and album art (which it sounds like you are already doing).* If you want your app to have an actual icon on the CarPlay screen so users can browse the producer's albums and playlists without touching their phone, you need to use the CarPlay framework. Please remember the link above as requires a special CarPlay entitlement to allow your app to appear on a car's screen. Request the CarPlay Audio App entitlement. Once approved, add the com.apple.developer.carpla
1w
Reply to iCloud Drive silent upload deadlock caused by stale HTTP/3 session in nsurlsessiond (FB22476701)
Quick update — the prediction from the 2026-04-18 post panned out. As of 2026-04-21, h3/GCS is back on this account/region for CKAsset body PUTs. Same Mac (macOS 26.4.1, build 25E253), same iCloud Drive account, no macOS update since 2026-04-18. The deadlock reproduced three times within 50 minutes today: Run 1 (natural, ambient work): 4 files stuck 10–30 min, signature matches FB22476701 — 94 × protocol=h3, 10 × requestDuration=-1.000 in the 30-min log window, pool=com.apple.cloudkit.BackgroundConnectionPool Runs 2 + 3 (scripted bulk-copy test set, 90 s windows): same signature, pool-poisoning within 90 s of each upload batch New forensic data point captured this time — sample on the user cloudd during the hang shows NSURLConnectionLoader + CFStream.LegacyThread both 100 % blocked in mach_msg2_trap for the full 10 s capture window. No CPU spin, no lock contention; the daemon is alive and consuming no CPU, simply not being notified that the QUIC session has died. Missing-wakeup patt
1w
Reply to Clarification on WWDC25 Session 300: Do iPhone 11 and SE (2nd gen) fully support Frame Interpolation & Super Resolution without issues?
The features discussed in Session 300 use the Video Toolbox VTFrameProcessor API. The specific processors are: VTLowLatencyFrameInterpolationConfiguration (frame interpolation) VTLowLatencySuperResolutionScalerConfiguration (super resolution) Both are available in iOS 26, but availability on a given OS version does not guarantee that every device running that OS supports every processor. Determine support on a specific device at runtime with the isSupported class property: if VTLowLatencyFrameInterpolationConfiguration.isSupported { // Frame interpolation is available on this device } if VTLowLatencySuperResolutionScalerConfiguration.isSupported { // Low-latency super resolution is available on this device } For super resolution, query the supported scale factors for your target dimensions, because these vary by device: let scaleFactors = VTLowLatencySuperResolutionScalerConfiguration .supportedScaleFactors(frameWidth: width, frameHeight: height) An empty array means the processor doesn't support tho
Topic: Media Technologies SubTopic: Video Tags:
1w
Membership Purchase Complete, account status pending after 1 week
Hello I have buy new developepr membership and i have get email for purchase confirmation but when ihave go to developer account i have seen this. Purchase your membership. To continue your enrollment, complete your purchase now. Your purchase may take up to 48 hours to process. Please help me why it will show this if I have already bought the membership? I have confirmed with the bank that the money has been taken away from my account a week ago.
Replies
0
Boosts
0
Views
26
Activity
1w
Apple Developer Program enrollment pending for over a week — any way to escalate?
Hi everyone, I submitted my Apple Developer Program enrollment on 4/12/2025 and it’s now been over a week with the status still showing as pending. I haven’t received any emails requesting additional information, and my account, payment method, and identity details all look correct on my end. Details: • Enrollment type: Individual • Region: United States Tx • Current status: Pending
Replies
0
Boosts
0
Views
87
Activity
1w
Storefront.current?.countryCode returns inconsistent values in TestFlight builds
Hi, We're experiencing inconsistent and unexpected values returned by Storefront.current?.countryCode when running our app via TestFlight. In our case: The device region and locale are set to Poland The App Store account (Media & Purchases) is also set to Poland However, when running a TestFlight build, Storefront.current?.countryCode sometimes returns a completely different value (e.g. NO for Norway), which does not match the current App Store account configuration. Here's the code we're using: if #available(iOS 15.0, *) { let code = await Storefront.current?.countryCode print(Storefront countryCode:, code ?? nil) } What's particularly confusing: Across different devices logged into the same App Store account, we sometimes receive different countryCode values The returned value does not seem to reflect the current App Store region or device settings We understand that Storefront reflects the App Store storefront and not the device locale, but in this case the value appears stale or inco
Replies
1
Boosts
0
Views
83
Activity
1w
Manual FairPlay License Renewal: AVContentKeySessionDelegate not triggering via addContentKeyRecipient
Hi everyone, I am working on an app that supports offline playback with FairPlay Streaming (FPS). I have successfully implemented the logic to download and persist the content keys (TLLV), and offline playback is working correctly using the stored persistent keys. However, I am now trying to implement a manual renewal process for these licenses, and I’ve run into an issue where the delegate methods are not being fired as expected. The Issue: I am calling contentKeySession.addContentKeyRecipient(asset) to force a renewal or re-fetch of the content key for a specific asset. Even though the asset is correctly initialized and the session is active, the AVContentKeySessionDelegate methods (specifically contentKeySession(_:didProvide:)) are not being triggered at all. My Questions: Why is the delegate not firing when adding the recipient? Is there a specific state or property the AVURLAsset needs to have (or a specific way it should be initialized) to trigger a new key request via addContentKeyRecipient? I
Replies
3
Boosts
0
Views
591
Activity
1w
App Store Connect version record stuck in 409 — Case #102865399563 silent 12 days despite 3 follow-ups
Hi all — this is genuinely urgent for us and I'd really appreciate any help. We've been fully blocked from shipping updates for almost two weeks, and Feedback Assistant has been completely silent. Posting here as a last resort to get the issue in front of someone who can route it. Our app (1.0.0 live on App Store, CN region) has a version record stuck in a broken backend state since April 9. Every recovery path fails at the Apple backend layer. Version record ID: 00ae0692-f94d-4632-a369-a9b230788330 Case: #102865399563 Symptoms via ASC web UI: Version shows Prepare for Submission Save fails with red error icon, no message shown DevTools Network shows: 409 ENTITY_ERROR.RELATIONSHIP.INVALID on /data/relationships/build + button to create next version is hidden while this record is in Prepare for Submission state Symptoms via ASC API (all paths tried, all 409): DELETE /v1/appStoreVersions/{id} → 409 STATE_ERROR Only the first version of any platform can be deleted PATCH /v1/appStoreVersions/{id
Replies
0
Boosts
0
Views
54
Activity
1w
visionOS: AVFoundation cannot deliver simultaneous video from two external (UVC) cameras; no public USB fallback exists
Area: visionOS 26.4 · AVFoundation · AVCapture · External/UVC video Classification: Suggestion / API Enhancement Request (also: Incorrect/Missing Documentation) Device / OS: Apple Vision Pro, visionOS 26.x. Xcode 26.4.1, XROS26.4.sdk. Summary On visionOS, a third-party app cannot display two UVC USB cameras (connected through a powered USB-C hub) at the same time. Every AVFoundation path that would enable this on iPadOS is either unavailable or fails at runtime on visionOS, and there is no public non-AVFoundation fallback (no IOUSBHost, no DriverKit, no usable CoreMediaIO, no MFi path for generic UVC devices). This is a real capability gap relative to iPadOS and macOS, and Camo Studio on iPadOS (App Store ID 6450313385) demonstrates the two-camera USB-hub use case is legitimate and valuable for spatial-video/hybrid-capture workflows on Vision Pro. Steps to reproduce Connect a powered USB-C hub to Apple Vision Pro with two UVC webcams attached. Build a visionOS app that uses AVCaptureDevice.DiscoverySession(de
Replies
1
Boosts
0
Views
970
Activity
1w
Enrollment Issue: Developer Program Membership Payment Not Reflected
Dear Apple Developer Support Team, I am writing to request assistance with my Apple Developer Program membership status. On Wednesday, April 15, I completed the payment of $99 for a one-year individual membership. However, five days have passed, and my account status has not yet been updated. When I log into the Apple Developer portal, it continues to prompt me to Purchase Membership rather than showing my account as active. Could you please review my account and manually update the enrollment status so I can begin using the developer services? If there is any additional information required from my side, please let me know. Thank you for your time and assistance. Best regards, Ibrahim Asery
Replies
1
Boosts
0
Views
96
Activity
1w
Notice of Termination - Indie dev from Angola
Hello, I'm an indie developer residing in Angola and founder of ADA - Apple Developer Angola, a community for Apple developers. I recently received news that my account was closed due to errors I take responsibility for. All I would like from Apple is an opportunity to do the right thing. Seeing my account blocked has greatly impacted my career. I regret my actions and simply want a chance to show that I will do the right thing.
Replies
0
Boosts
0
Views
30
Activity
1w
Subscription Status - Missing Metadata
Hello Support Team member - I hope you are having a good day. My app has been approved and I manually released it 8 hours ago. Currently users do not see the subscriptions available on the paywall, and the subscriptions do not show up under in-app purchases in the app store. When I look at my subscriptions in AppStoreConnect - they say Missing Metadata. When I look inside the subscriptions - one of the two has a localization that is showing a status of Prepare for Submission. The other subscription does not have a localization - and there is nothing within the subscription that has a yellow warning alert. How can I resolve this? Thank you much!
Replies
3
Boosts
0
Views
94
Activity
1w
HKAnchoredObjectQuery ignores "no correlation" predicate in updateHandler
Hello, I'm seeing an inconsistency in how HKAnchoredObjectQuery applies predicates between its initial results handler and its update handler. Specifically, predicates that filter quantity samples by correlation membership - using either HKQuery.predicateForObjectsWithNoCorrelation() or NSPredicate(format: %K == nil, HKPredicateKeyPathCorrelation) - are respected in the resultsHandler but silently ignored in the updateHandler. Setup I have three long-running HKAnchoredObjectQuery instances: One for HKCorrelationType(.bloodPressure) - no predicate One for HKQuantityType(.bloodPressureSystolic) - predicate: HKQuery.predicateForObjectsWithNoCorrelation() One for HKQuantityType(.bloodPressureDiastolic) - predicate: HKQuery.predicateForObjectsWithNoCorrelation() The intent of the predicate on the systolic/diastolic queries is to capture only standalone quantity samples written directly by third-party apps - not the constituent sub-samples of an HKCorrelation. The correlation query handles correlated sampl
Replies
1
Boosts
0
Views
81
Activity
1w
Age Verification testing in TestFlight
Hi, We have implemented Age Verification in iOS and wanted to test the workflow before releasing the app. How do we test the app before releasing it in production. We currently use Test Flight for testing. We created users in Sandbox but that shows just Texas in Age Assurance.
Replies
1
Boosts
0
Views
96
Activity
1w
Reply to iCloud Drive silent upload deadlock caused by stale HTTP/3 session in nsurlsessiond (FB22476701)
Follow-up — post-submission PCAP analysis of the filtered QUIC capture from the 2026-04-21 reproduction (attached to FB22476701, third update). Analysed with tshark 4.6.4 for QUIC long-header parsing; Initial + Handshake packets are decryptable per RFC 9001 §5.2 (keys derived from DCID). 1-RTT STREAM payloads remain opaque — nsurlsessiond does not export SSLKEYLOGFILE. The 102 s deadlock window is quantifiable on the wire: Last pre-gap packet: 20:09:51.802 (Client→Server, protected, port 51943) First post-gap packet: 20:11:34.625 (Client→Server, fresh Initial on new port 50715) 102.823 s with zero packets in either direction — no client PING, no keepalive, no probe, no CONNECTION_CLOSE The same missing-wakeup pattern was already documented earlier the same evening via sample on cloudd during a reactive-capture repro: the main thread, CFStream.LegacyThread and NSURLConnectionLoader all at 8627/8627 samples blocked in mach_msg2_trap. The user-space thread stacks and the UDP flow tell the same story from two ang
Replies
Boosts
Views
Activity
1w
Reply to adding CarPlay extension to iOS app
Thanks for the post. This is where I would recommend to start: https://developer.apple.com/documentation/carplay/requesting-carplay-entitlements https://developer.apple.com/download/files/CarPlay-Developer-Guide.pdf After you go over the CarPlay development relies on the MediaPlayer framework to show these buttons , you need to register targets with MPRemoteCommandCenter. Add this configuration wherever you set up your audio player. Make sure you are also setting your MPNowPlayingInfoCenter.default().nowPlayingInfo with the track title, artist, and album art (which it sounds like you are already doing).* If you want your app to have an actual icon on the CarPlay screen so users can browse the producer's albums and playlists without touching their phone, you need to use the CarPlay framework. Please remember the link above as requires a special CarPlay entitlement to allow your app to appear on a car's screen. Request the CarPlay Audio App entitlement. Once approved, add the com.apple.developer.carpla
Replies
Boosts
Views
Activity
1w
Reply to iCloud Drive silent upload deadlock caused by stale HTTP/3 session in nsurlsessiond (FB22476701)
Quick update — the prediction from the 2026-04-18 post panned out. As of 2026-04-21, h3/GCS is back on this account/region for CKAsset body PUTs. Same Mac (macOS 26.4.1, build 25E253), same iCloud Drive account, no macOS update since 2026-04-18. The deadlock reproduced three times within 50 minutes today: Run 1 (natural, ambient work): 4 files stuck 10–30 min, signature matches FB22476701 — 94 × protocol=h3, 10 × requestDuration=-1.000 in the 30-min log window, pool=com.apple.cloudkit.BackgroundConnectionPool Runs 2 + 3 (scripted bulk-copy test set, 90 s windows): same signature, pool-poisoning within 90 s of each upload batch New forensic data point captured this time — sample on the user cloudd during the hang shows NSURLConnectionLoader + CFStream.LegacyThread both 100 % blocked in mach_msg2_trap for the full 10 s capture window. No CPU spin, no lock contention; the daemon is alive and consuming no CPU, simply not being notified that the QUIC session has died. Missing-wakeup patt
Replies
Boosts
Views
Activity
1w
Reply to Clarification on WWDC25 Session 300: Do iPhone 11 and SE (2nd gen) fully support Frame Interpolation & Super Resolution without issues?
The features discussed in Session 300 use the Video Toolbox VTFrameProcessor API. The specific processors are: VTLowLatencyFrameInterpolationConfiguration (frame interpolation) VTLowLatencySuperResolutionScalerConfiguration (super resolution) Both are available in iOS 26, but availability on a given OS version does not guarantee that every device running that OS supports every processor. Determine support on a specific device at runtime with the isSupported class property: if VTLowLatencyFrameInterpolationConfiguration.isSupported { // Frame interpolation is available on this device } if VTLowLatencySuperResolutionScalerConfiguration.isSupported { // Low-latency super resolution is available on this device } For super resolution, query the supported scale factors for your target dimensions, because these vary by device: let scaleFactors = VTLowLatencySuperResolutionScalerConfiguration .supportedScaleFactors(frameWidth: width, frameHeight: height) An empty array means the processor doesn't support tho
Topic: Media Technologies SubTopic: Video Tags:
Replies
Boosts
Views
Activity
1w