Search results for

“We are unable to process your request”

73,633 results found

Post

Replies

Boosts

Views

Activity

StoreKit: No products returned in Sandbox + "This item is not available" in "initiate transaction"
Hi, my app was rejected because IAP were not present in the app. I followed guidelines more carefully and filled all buisness detail since then. And now I have: StoreKit Configuration in XCode is set to None, Products (subscription + consumable product) are already approved (from the previous review) Paid Apps Agreement - active Bank account - active Tax forms - active Compliance - active Problems: When trying to test it with TestFlight + sandbox account, StoreKit is returning zero products. When trying to check my products by initiate transaction from Sandbox App Store manage dashboard I am getting an error This item is not available I am totally stuck and don't know what to process next. Unfortunately API.
1
0
78
2w
App stuck in "In Review" for 8 days (12 days total review time) – should I cancel and resubmit?
Hi everyone, My app has been in the review process for a total of 12 days now, and for about 8 days the status has been stuck on “In Review” without any change. Before that, it also spent several days in “Waiting for Review.” I have already contacted support and requested an expedited review, but there has been no update so far. Has anyone experienced something similar? Would it make sense to cancel the submission and resubmit the app, or could that make things worse? Thank you.
1
0
90
2w
Expedited Review Granted but Apps Stuck in "Waiting for Review" for 12 Days (Case ID: 102840953234)
Hello Apple Developer Community and App Review Team, I am reaching out here because I am completely stuck and have not received a response from the standard support channels. On March 4th, I requested and was successfully granted an Expedited Review for a critical bug fix for two of my apps (Who Wants to Be AI Professor? and The Fed Chair). However, it has been 12 days and both apps are still stuck in the Waiting for Review status. Suspecting a system glitch or ghosting issue, I contacted App Store Connect support on March 10th and received Case ID: 102840953234. The automated email stated I would receive a reply within 2 business days, but that time has long passed with no response. I kindly ask if an App Review Team member or Apple Staff could look into this Case ID and check if my submissions are stuck in a technical loop. I have refrained from canceling and resubmitting to avoid further delays, but I am currently completely blocked. Any help to push these manually to the review desk would be imme
1
0
71
2w
Extended Runtime API - Health Monitoring
In the WWDC 2019 session Extended Runtime for WatchOS apps the video talks about an entitlement being required to use the HR sensor judiciously in the background. It provides a link to request the entitlement which no longer works: http://developer.apple.com/contect/request/health-monitoring The session video is also quite hard to find these days. Does anyone know why this is the case? Is the API and entitlement still available? Is there a supported way to run, even periodically, in the background on the Watch app (ignoring the background observer route which is known to be unreliable) and access existing HR sensor data
7
0
302
2w
Reliable region monitoring (geofence-based) while app is killed
I am developing an app used by public safety agencies. Part of the app is used to determine live agency staffing using geofences. For example, a geofence exists around a station, and when a user enters or exits that geofence, the app updates the staffing count at that station in real time. The issue I am having is reliably detecting when a user enters or exits the geofence while the app is killed (meaning the user force quit the app from the app launcher). I understand that iOS can relaunch an app in the background if the system terminated the process using Region Monitoring, but I haven't gotten a clear answer about whether or how this is possible if the user kills (force quits) the app. Thank you in advance for your assistance.
1
0
238
2w
Reply to How to upload large videos with PHAssetResourceUploadJobChangeRequest?
Thanks for your reply. I only know how the API works based on the documentation, I’m not in IT and I do not know the limitations on your server side. Because the upload is handed off to a system daemon to be performed out-of-process, the API is currently designed around a fire-and-forget model for a single HTTP request per resource. It assumes the destination endpoint can ingest the entire payload in one go. But for your description this is not correct? I would suggest to open a conversation with the IT department for that server and if not changes can be done, I would recommend to another approach. If backend changes are entirely off the table, sticking with your custom NSURLSession implementation is the right call. Albert Pascual
  Worldwide Developer Relations.
2w
Reply to Device Token Not Invalidated After App Uninstall (iOS 26.4 Beta)
Unfortunately as the issue is still being investigated, we do not have the answers you seek. We suspect the issue may have started with iOS 26. The root cause is not determined yet, but we believe there is a specific trigger for this issue to surface - that is, it does not effect all apps that get deleted and re-installed every time, all the time. All that will be part of the investigating and fixing process.
2w
Reply to FileManager.replaceItemAt(_:withItemAt:) fails sporadically on ubiquitous items
(I say “in theory” because LibZip seems to be doing something smarter somehow; even if you overwrite the text file at the same position—at the first entry—saves are still a lot faster than they would be writing the entire 500MB out again.) So, one factor here is just write caching. The more specifically, the write() syscall is returning as soon as data reaches the UBC (Universal Buffer Cache), which is the shared read/write cache for the entire system. This ensures that subsequent reads() return the just written data, even if the read originates from different file descriptors or processes. However, when the data will actually reach the disk is basically undefined, which is why fsync and F_FULLFSYNC exist. What makes copies slow isn't the writes; it's the reads, since the data still has to be pulled off the disk so it can be sent back to write. __ Kevin Elliott DTS Engineer, CoreOS/Hardware
Topic: App & System Services SubTopic: Core OS Tags:
2w
Crash while presenting a media picker for Music
This is the code I use: @MainActor func picker()->UIViewController{ let pickerController = MPMediaPickerController(mediaTypes: .music) print(pickerController) pickerController.showsCloudItems=true pickerController.prompt = NSLocalizedString(Add pieces to queue, comment:); pickerController.allowsPickingMultipleItems=true; pickerController.delegate=MPMusicPlayerControllerSingleton.sharedController(); return pickerController } MainActor @IBAction func handleBrowserTapped(_ sender: AnyObject){ if let pickerController=contentProvider?.picker(){ self.present(pickerController, animated:true, completion:nil) } } And this his is the crash log: *** Assertion failure in -[MPMediaPickerController_Appex requestRemoteViewController], MPMediaPickerController.m:523 *** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'remoteViewController cannot be nil -- process will crash inserting in hierarchy. We likely got a nil remoteViewController because Music is crashing.' *** First t
12
0
242
2w
Reply to Crash while presenting a media picker for Music
If your test app and main app share the same Bundle ID, granting permission in the test app automatically grants it in the main app. Furthermore, once an app is authorized, the system will never show the prompt again, which is why your main app is always reporting as authorized. Before you can request access, your main app must have the privacy string in its Info.plist. If you call the authorization code without this, your app will crash. I would check on your workflow. Since your app is currently stuck in the .authorized state, calling requestAuthorization will just instantly return .authorized without showing the UI. To test the prompt, you need to revoke the permission. When you install that app into a new device do you have that issue? Albert Pascual
  Worldwide Developer Relations.
Topic: Media Technologies SubTopic: Audio Tags:
2w
Reply to BGProcessingTask expirationHandler — No way to distinguish expiration reason
Q1. Is there an official, complete list of all conditions that trigger expirationHandler? The documentation only mentions time expires. No, but the primary causes are user cancellation and failure to report progress. Theoretically, resource pressure could cause it; however, in practice, I think the system typically ends up killing your app instead[1]. Q2. What is the specific time limit before timeout? If it varies by device state, what are the conditions? There isn't any specific time limit. I've never worked out what the absolute maximum (defined by the progress reporting requirement) is, but that limit would be high enough that it's not really a constraint. Q3. A way to distinguish the reason is needed. User stop and system expiration require completely different handling. Currently, this is impossible. Yes, this is definitely an issue with the API. Please file an enhancement request asking for this, then post the bug number back here. [1] The issue here is similar to (one of…) the reason why memo
2w
Reply to Back gesture not disabled with navigationBarBackButtonHidden(true) when using .zoom transition
Hello @Bikrrr I see your report just landed in our system. This is interesting, thank you for reporting. 🧐 Updates will be provided in Feedback Assistant, we are unable to discuss if a fix has been found on the Forums. Have you found a workaround for this you'd be willing to share here that I can show to the engineering team investigating this issue?  Travis
Topic: UI Frameworks SubTopic: SwiftUI Tags:
2w
Reply to Crash while presenting a media picker for Music
And this is the full error display: Error acquiring assertion: [u 31CF99CC-85C8-4FDF-9567-8ED0FF31C74F:m (null)] [com.apple.Music.MediaPicker(3.1)] could not acquire startup assertion Plugin , instance = [(null)], state = 3, useCount = 0> must have pid! Extension request will fail Failed to acquire assertion for plugin: , instance = [(null)], state = 3, useCount = 0> pid: 0 Unable to acquire process assertion in beginUsing: with plugin identifier: com.apple.Music.MediaPicker, killing plugin begin extension request Request PK UUID: CB10114C-0A82-4781-9B26-17A754A333B8 with item count 0 complete with error: Error Domain=PlugInKit Code=4 could not acquire startup assertion UserInfo={NSLocalizedDescription=could not acquire startup assertion} PlugInKit error in beginUsing: with plugin identifier: com.apple.Music.MediaPicker, killing plugin *** Assertion failure in -[MPMediaPickerController_Appex requestRemoteViewController], MPMediaPickerController.m:523 *** Te
Topic: Media Technologies SubTopic: Audio Tags:
2w
StoreKit: No products returned in Sandbox + "This item is not available" in "initiate transaction"
Hi, my app was rejected because IAP were not present in the app. I followed guidelines more carefully and filled all buisness detail since then. And now I have: StoreKit Configuration in XCode is set to None, Products (subscription + consumable product) are already approved (from the previous review) Paid Apps Agreement - active Bank account - active Tax forms - active Compliance - active Problems: When trying to test it with TestFlight + sandbox account, StoreKit is returning zero products. When trying to check my products by initiate transaction from Sandbox App Store manage dashboard I am getting an error This item is not available I am totally stuck and don't know what to process next. Unfortunately API.
Replies
1
Boosts
0
Views
78
Activity
2w
App stuck in "In Review" for 8 days (12 days total review time) – should I cancel and resubmit?
Hi everyone, My app has been in the review process for a total of 12 days now, and for about 8 days the status has been stuck on “In Review” without any change. Before that, it also spent several days in “Waiting for Review.” I have already contacted support and requested an expedited review, but there has been no update so far. Has anyone experienced something similar? Would it make sense to cancel the submission and resubmit the app, or could that make things worse? Thank you.
Replies
1
Boosts
0
Views
90
Activity
2w
Expedited Review Granted but Apps Stuck in "Waiting for Review" for 12 Days (Case ID: 102840953234)
Hello Apple Developer Community and App Review Team, I am reaching out here because I am completely stuck and have not received a response from the standard support channels. On March 4th, I requested and was successfully granted an Expedited Review for a critical bug fix for two of my apps (Who Wants to Be AI Professor? and The Fed Chair). However, it has been 12 days and both apps are still stuck in the Waiting for Review status. Suspecting a system glitch or ghosting issue, I contacted App Store Connect support on March 10th and received Case ID: 102840953234. The automated email stated I would receive a reply within 2 business days, but that time has long passed with no response. I kindly ask if an App Review Team member or Apple Staff could look into this Case ID and check if my submissions are stuck in a technical loop. I have refrained from canceling and resubmitting to avoid further delays, but I am currently completely blocked. Any help to push these manually to the review desk would be imme
Replies
1
Boosts
0
Views
71
Activity
2w
Extended Runtime API - Health Monitoring
In the WWDC 2019 session Extended Runtime for WatchOS apps the video talks about an entitlement being required to use the HR sensor judiciously in the background. It provides a link to request the entitlement which no longer works: http://developer.apple.com/contect/request/health-monitoring The session video is also quite hard to find these days. Does anyone know why this is the case? Is the API and entitlement still available? Is there a supported way to run, even periodically, in the background on the Watch app (ignoring the background observer route which is known to be unreliable) and access existing HR sensor data
Replies
7
Boosts
0
Views
302
Activity
2w
Reliable region monitoring (geofence-based) while app is killed
I am developing an app used by public safety agencies. Part of the app is used to determine live agency staffing using geofences. For example, a geofence exists around a station, and when a user enters or exits that geofence, the app updates the staffing count at that station in real time. The issue I am having is reliably detecting when a user enters or exits the geofence while the app is killed (meaning the user force quit the app from the app launcher). I understand that iOS can relaunch an app in the background if the system terminated the process using Region Monitoring, but I haven't gotten a clear answer about whether or how this is possible if the user kills (force quits) the app. Thank you in advance for your assistance.
Replies
1
Boosts
0
Views
238
Activity
2w
Reply to How to upload large videos with PHAssetResourceUploadJobChangeRequest?
Thanks for your reply. I only know how the API works based on the documentation, I’m not in IT and I do not know the limitations on your server side. Because the upload is handed off to a system daemon to be performed out-of-process, the API is currently designed around a fire-and-forget model for a single HTTP request per resource. It assumes the destination endpoint can ingest the entire payload in one go. But for your description this is not correct? I would suggest to open a conversation with the IT department for that server and if not changes can be done, I would recommend to another approach. If backend changes are entirely off the table, sticking with your custom NSURLSession implementation is the right call. Albert Pascual
  Worldwide Developer Relations.
Replies
Boosts
Views
Activity
2w
Reply to [WebXR] Support for AR module in VisionOS 2.x
Is there any update on this? I've had an achromatopsia vision augmentation solution waiting since day 1 release and I'm still waiting. Would very much like to deploy it someday. Also, if there is a place to request this feature, I'd very much like to know where that would be.
Topic: Spatial Computing SubTopic: General Tags:
Replies
Boosts
Views
Activity
2w
Reply to Device Token Not Invalidated After App Uninstall (iOS 26.4 Beta)
Unfortunately as the issue is still being investigated, we do not have the answers you seek. We suspect the issue may have started with iOS 26. The root cause is not determined yet, but we believe there is a specific trigger for this issue to surface - that is, it does not effect all apps that get deleted and re-installed every time, all the time. All that will be part of the investigating and fixing process.
Replies
Boosts
Views
Activity
2w
Reply to FileManager.replaceItemAt(_:withItemAt:) fails sporadically on ubiquitous items
(I say “in theory” because LibZip seems to be doing something smarter somehow; even if you overwrite the text file at the same position—at the first entry—saves are still a lot faster than they would be writing the entire 500MB out again.) So, one factor here is just write caching. The more specifically, the write() syscall is returning as soon as data reaches the UBC (Universal Buffer Cache), which is the shared read/write cache for the entire system. This ensures that subsequent reads() return the just written data, even if the read originates from different file descriptors or processes. However, when the data will actually reach the disk is basically undefined, which is why fsync and F_FULLFSYNC exist. What makes copies slow isn't the writes; it's the reads, since the data still has to be pulled off the disk so it can be sent back to write. __ Kevin Elliott DTS Engineer, CoreOS/Hardware
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
2w
Crash while presenting a media picker for Music
This is the code I use: @MainActor func picker()->UIViewController{ let pickerController = MPMediaPickerController(mediaTypes: .music) print(pickerController) pickerController.showsCloudItems=true pickerController.prompt = NSLocalizedString(Add pieces to queue, comment:); pickerController.allowsPickingMultipleItems=true; pickerController.delegate=MPMusicPlayerControllerSingleton.sharedController(); return pickerController } MainActor @IBAction func handleBrowserTapped(_ sender: AnyObject){ if let pickerController=contentProvider?.picker(){ self.present(pickerController, animated:true, completion:nil) } } And this his is the crash log: *** Assertion failure in -[MPMediaPickerController_Appex requestRemoteViewController], MPMediaPickerController.m:523 *** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'remoteViewController cannot be nil -- process will crash inserting in hierarchy. We likely got a nil remoteViewController because Music is crashing.' *** First t
Replies
12
Boosts
0
Views
242
Activity
2w
Reply to Crash while presenting a media picker for Music
If your test app and main app share the same Bundle ID, granting permission in the test app automatically grants it in the main app. Furthermore, once an app is authorized, the system will never show the prompt again, which is why your main app is always reporting as authorized. Before you can request access, your main app must have the privacy string in its Info.plist. If you call the authorization code without this, your app will crash. I would check on your workflow. Since your app is currently stuck in the .authorized state, calling requestAuthorization will just instantly return .authorized without showing the UI. To test the prompt, you need to revoke the permission. When you install that app into a new device do you have that issue? Albert Pascual
  Worldwide Developer Relations.
Topic: Media Technologies SubTopic: Audio Tags:
Replies
Boosts
Views
Activity
2w
Reply to BGProcessingTask expirationHandler — No way to distinguish expiration reason
Q1. Is there an official, complete list of all conditions that trigger expirationHandler? The documentation only mentions time expires. No, but the primary causes are user cancellation and failure to report progress. Theoretically, resource pressure could cause it; however, in practice, I think the system typically ends up killing your app instead[1]. Q2. What is the specific time limit before timeout? If it varies by device state, what are the conditions? There isn't any specific time limit. I've never worked out what the absolute maximum (defined by the progress reporting requirement) is, but that limit would be high enough that it's not really a constraint. Q3. A way to distinguish the reason is needed. User stop and system expiration require completely different handling. Currently, this is impossible. Yes, this is definitely an issue with the API. Please file an enhancement request asking for this, then post the bug number back here. [1] The issue here is similar to (one of…) the reason why memo
Replies
Boosts
Views
Activity
2w
Reply to Crash while presenting a media picker for Music
Very strangely on the test app I was requested to allow the usage of the music repository and now even the main app allows to use the music repository. I wonder how may I request the same thing on the main app, especially given I'am always reported as authorized.
Topic: Media Technologies SubTopic: Audio Tags:
Replies
Boosts
Views
Activity
2w
Reply to Back gesture not disabled with navigationBarBackButtonHidden(true) when using .zoom transition
Hello @Bikrrr I see your report just landed in our system. This is interesting, thank you for reporting. 🧐 Updates will be provided in Feedback Assistant, we are unable to discuss if a fix has been found on the Forums. Have you found a workaround for this you'd be willing to share here that I can show to the engineering team investigating this issue?  Travis
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
2w
Reply to Crash while presenting a media picker for Music
And this is the full error display: Error acquiring assertion: [u 31CF99CC-85C8-4FDF-9567-8ED0FF31C74F:m (null)] [com.apple.Music.MediaPicker(3.1)] could not acquire startup assertion Plugin , instance = [(null)], state = 3, useCount = 0> must have pid! Extension request will fail Failed to acquire assertion for plugin: , instance = [(null)], state = 3, useCount = 0> pid: 0 Unable to acquire process assertion in beginUsing: with plugin identifier: com.apple.Music.MediaPicker, killing plugin begin extension request Request PK UUID: CB10114C-0A82-4781-9B26-17A754A333B8 with item count 0 complete with error: Error Domain=PlugInKit Code=4 could not acquire startup assertion UserInfo={NSLocalizedDescription=could not acquire startup assertion} PlugInKit error in beginUsing: with plugin identifier: com.apple.Music.MediaPicker, killing plugin *** Assertion failure in -[MPMediaPickerController_Appex requestRemoteViewController], MPMediaPickerController.m:523 *** Te
Topic: Media Technologies SubTopic: Audio Tags:
Replies
Boosts
Views
Activity
2w