Search results for

“Account Locked”

33,568 results found

Post

Replies

Boosts

Views

Activity

App Review Pending for an Extended Period
Hello, I am reaching out regarding my latest update, which has remained in “Waiting for Review” status for an extended period. In the past, my updates have generally proceeded through review without significant delays, and I would normally be willing to wait if this were part of a broader backlog. However, based on recent experiences shared by fellow developers, it appears that this delay may not be affecting all accounts equally. For this reason, I would like to confirm whether there might be any specific issue with my submission. I have already submitted an expedited review request and contacted Developer Support, but I have not yet received any response. At this point, I would greatly appreciate confirmation on the following: Whether there are any issues blocking the review of this submission Whether any additional information is required from my side Or whether the app is simply still pending reviewer assignment I fully understand that the App Review team may be handling a high volume of submissi
2
0
156
Mar ’26
Reply to Apps stuck in "Waiting for Review" for 23 days due to pending agreements. What happens now?
I wonder if there’s an issue with ASC. Since last week, I get this warning when syncing my sale figures with AppFigures: »[Apple ID] has new terms to agree to in App Store Connect. We will try to continue importing but some data may not be available. Please log in to your App Store Connect account and accept the Terms & Conditions. » However, all agreements are marked as active.
Mar ’26
Questions about DeclaredAgeRange's isEligibleForAgeFeatures instance variable
Our team is in the process of updating our apps to comply with Texas's new state law. In order to minimize user confusion and provide the most ideal flow to access the app as possible, we have a few questions we would like answered. Summary of questions: Is isEligibleForAgeFeatures intended to be accurate and accessible before the user has accepted the Age Range permissions prompt? As other US states and/or other countries adopt a similar law going forward, will this instance variable cover those locations? Will the runtime crashes on isEligibleForAgeFeatures and other symbols in the DeclaredAgeRange framework be addressed in a future RC or in the official release? Details and Investigations: With regards to isEligibleForAgeFeatures, our team has noticed that this value is always false before the age range prompt has been accepted. This has been tested on the XCode RC 26.2 (17C48). Assuming the request needs to be accepted first, isEligibleForAgeFeatures does not get updated immediately when the user chooses
6
0
1.2k
Mar ’26
Reply to IsEligibleForAgeFeatures behavior in Brazil
@DTS Engineer None of the above linked documents answer any of these 4 questions. Based on https://developer.apple.com/documentation/declaredagerange/requesting-people-share-their-age-range-with-your-app we can answer questions 1 and 4 ourselves. We can expect that for all users with Brazilian App Store accounts: Before the date, isEligibleForAgeFeatures will return false. After the date, isEligibleForAgeFeatures will return true. For Question 3, the Brazilian law says: This Law shall enter into force six months after the date of its publication. And I think it was published on September 17, 2025, so it should be effective March 17, 2026. I don't know anything about Question 2's answer.
Topic: App & System Services SubTopic: General Tags:
Mar ’26
App Status: "Waiting for Review" since February 4, 2026. No official reply from Apple for over 10 days after contacting support.
Hello iOS developer community, I submitted an app on App Store Connect on February 4, 2026, but I don't understand why, as of today (March 2, 2026), its status is still Waiting for Review. I have emailed Developer Support but only received the following automated reply: Thanks for submitting your support request. We’ve received your support request and will get back to you as soon as possible. Your case ID is 102824763035. It has been over ten days, and I still haven’t received any official follow-up or updates from Apple regarding this issue. What should I do now? The email address I use for my Apple Developer account is
1
0
73
Mar ’26
Calling a Objc method directly from C
I would like to avoid the middle man and call Objective C directly from C Currently I do this This is called from a dispatch table in a pure C file _ctx->mt_render_funcs.mtlEnd(_ctx); Which calls this routine in a obj c file .m void mtlEnd(MTRenderContext mt_ctx) { // Call the Objective-C method using Objective-C syntax [(__bridge id) mt_ctx->mt_render_funcs.mtlObj mtlEnd]; } Which ends up here... in ObjC #pragma mark mtlEnd (void)mtlEnd { // vertex buffer size_t size; size = sizeof(Vertex4ColorNormalTex) * _ctx->vert_eng.current_vertex; [_currentRenderEncoder setVertexBytes:_ctx->vert_eng.vertices length: size atIndex: VertexInputIndexVertices]; [_currentRenderEncoder drawPrimitives:(MTLPrimitiveType)_ctx->vert_eng.prim_type vertexStart:0 vertexCount:_ctx->vert_eng.current_vertex]; } It would simplify this to get rid of one call and call ObjC directly. The other idea is I want to use GCD and put a lock / unlock on the call from C to ensure thread safety so I can use GCD to dispatch
3
0
1.1k
Mar ’26
Email Required for App review
My app requires Google or Apple login. The App Store requires an active email for review. How can the App review team access my email if it required 2FA? I don't understand how I can get an app reviewed it they need me to provide a code after they login? It seems ridiculous that I need to supply them with a test email, why can't they test with a dummy email? Is it just not possible to get an app reviewed if the app requires Apple or Google logins? Should I temporarily add the option for any email to setup an account and just make a dummy email and then after review asap remove the email login from the app? that seems like a lot of unnecessary programming just because they the need me to provide an email address and login.
1
0
89
Mar ’26
How can I change the output dimensions of a CoreML model in Xcode when the outputs come from a NonMaximumSuppression layer?
After exerting a custom model with nms=True. In Xcode, the outputs show as: confidence: MultiArray (0 × 5) coordinates: MultiArray (0 × 4) I want to set fixed shapes (e.g., 100 × 5, 100 × 4), but Xcode does not allow editing—the shape fields are locked. The model graph shows both outputs come directly from a NonMaximumSuppression layer. Is it possible to set fixed output dimensions for NMS outputs in CoreML?
2
0
232
Mar ’26
Reply to Enrollment status stuck
I have been waiting 4 days so not quite as long. I tried paying again which annoyingly went through. I have created two support tickets, none of which have been answered. I guess all we can do is wait as there is no way to chase it up it seems UPDATE, i scheduled a call with them, they did it straight away, refund issued and account approved. probably worth trying the same
Mar ’26
Reply to Provisional Permission is not working as expected in iOS 16
I observed the same for iOS 18. There is a partial workaround: when authorization status is .notDetermined, request only .provisional authorization when authorization status is .authorized (i.e. after the user chose Keep), request [.alert, .badge, .sound] This way you at least get support for badges and sound, but it is still bad because the Lock screen and Banner settings will still be disabled and I think there is no way to re-request them programmatically. Unfortunately this makes provisional authorization kind of undesirable for many use cases.
Mar ’26
Provisional Permission is not working as expected in iOS 16
We recently developed the provisional permission for our app, but we have noticed that is not working as expected in iOS 16 (We have tested only there). Currently we request the permissions like this: UNUserNotificationCenter.current().requestAuthorization(options: [.alert, .badge, .sound, .provisional]) { [weak self] _, _ in // here we register for pushes in case authorizationStatus is provisional or authorised } What happens is we do get the 1st notification with the keep CTA - once tapped we see that there pops an action: Deliver Immediately, but even though the user selects that, we still see under setting the pushes are marked as Deliver Quietly. In addition to this the sound and bage still stay as toggled off - and the lock screen and banner as well stay off. Basically, nothing changes after the user selects Deliver Immediately
1
0
847
Mar ’26
Different team ID's on my certs
I've seen a few posts about this online and it seems that Xcode generates random team ID's with it's automatic signing system. But I haven't seen any way to make this work properly. If I log into the dev portal and look at my account, in the upper right I can see my team ID. If I manually generate a cert, I get a totally different one. Question: How can I generate a cert with my proper team ID (my paid account) where the ID's on my certs, identifiers and profiles all match? I've never had this issue before and am unsure how to solve it.
1
0
163
Mar ’26
Trapped in a "Black Box": Almost 3 weeks of App Review silence and ignored support tickets. Is this normal?
Hi everyone, I am writing this out of pure desperation because I honestly don't know what else to do or where to turn. My app has been stuck in the review process since February 9th (almost 3 weeks now), and I feel like I am completely trapped in a black box. I have tried every official channel available to get at least some information: I submitted requests for an expedited review. I opened 3 separate tickets with Developer Support, but received absolutely zero response. Just complete, deafening silence. I finally called the developer hotline. The representative was polite but completely unhelpful. I was basically told that everything is fine, this timeline is normal, we can't do anything to help you, just keep waiting. Just to put this wait time into perspective, while sitting in this Apple black box waiting for a single message, I have managed to do the following: Registered a Google Play Developer account and fully verified my identity. Almost completely rewrote my entire app from scratch, transl
2
0
201
Mar ’26
Reply to Apple Developer Program Enrollment Pending for Over 3 Weeks (Identity Verification)
after 3 weeks of back and forth (it takes roughly 5-10 business days for them to reply) I got the email which states that as a gesture of goodwill they will refund me the money and they should hit my account 30-60 days (lol). Problem is I'VE NEVER ASKED for a refund, I just want my dev account to be enabled. It seems that they don't read the tickets regarding dev accounts and just apply simple copypasta as a response (in their first response I got suggestion to follow all the steps I outlined as not-working in my support ticket lol) Obviously I will try to create another account and pay for it but the only problem is that I don't know should I wait up to two months for my money to come back and whole old enrollment procedure to expire or send them a support ticket and wait two weeks for a reply which most likely won't solve any problem ? They're too cryptic with their communication.
Mar ’26
App Review Pending for an Extended Period
Hello, I am reaching out regarding my latest update, which has remained in “Waiting for Review” status for an extended period. In the past, my updates have generally proceeded through review without significant delays, and I would normally be willing to wait if this were part of a broader backlog. However, based on recent experiences shared by fellow developers, it appears that this delay may not be affecting all accounts equally. For this reason, I would like to confirm whether there might be any specific issue with my submission. I have already submitted an expedited review request and contacted Developer Support, but I have not yet received any response. At this point, I would greatly appreciate confirmation on the following: Whether there are any issues blocking the review of this submission Whether any additional information is required from my side Or whether the app is simply still pending reviewer assignment I fully understand that the App Review team may be handling a high volume of submissi
Replies
2
Boosts
0
Views
156
Activity
Mar ’26
Reply to Apps stuck in "Waiting for Review" for 23 days due to pending agreements. What happens now?
I wonder if there’s an issue with ASC. Since last week, I get this warning when syncing my sale figures with AppFigures: »[Apple ID] has new terms to agree to in App Store Connect. We will try to continue importing but some data may not be available. Please log in to your App Store Connect account and accept the Terms & Conditions. » However, all agreements are marked as active.
Replies
Boosts
Views
Activity
Mar ’26
Questions about DeclaredAgeRange's isEligibleForAgeFeatures instance variable
Our team is in the process of updating our apps to comply with Texas's new state law. In order to minimize user confusion and provide the most ideal flow to access the app as possible, we have a few questions we would like answered. Summary of questions: Is isEligibleForAgeFeatures intended to be accurate and accessible before the user has accepted the Age Range permissions prompt? As other US states and/or other countries adopt a similar law going forward, will this instance variable cover those locations? Will the runtime crashes on isEligibleForAgeFeatures and other symbols in the DeclaredAgeRange framework be addressed in a future RC or in the official release? Details and Investigations: With regards to isEligibleForAgeFeatures, our team has noticed that this value is always false before the age range prompt has been accepted. This has been tested on the XCode RC 26.2 (17C48). Assuming the request needs to be accepted first, isEligibleForAgeFeatures does not get updated immediately when the user chooses
Replies
6
Boosts
0
Views
1.2k
Activity
Mar ’26
Reply to IsEligibleForAgeFeatures behavior in Brazil
@DTS Engineer None of the above linked documents answer any of these 4 questions. Based on https://developer.apple.com/documentation/declaredagerange/requesting-people-share-their-age-range-with-your-app we can answer questions 1 and 4 ourselves. We can expect that for all users with Brazilian App Store accounts: Before the date, isEligibleForAgeFeatures will return false. After the date, isEligibleForAgeFeatures will return true. For Question 3, the Brazilian law says: This Law shall enter into force six months after the date of its publication. And I think it was published on September 17, 2025, so it should be effective March 17, 2026. I don't know anything about Question 2's answer.
Topic: App & System Services SubTopic: General Tags:
Replies
Boosts
Views
Activity
Mar ’26
App Status: "Waiting for Review" since February 4, 2026. No official reply from Apple for over 10 days after contacting support.
Hello iOS developer community, I submitted an app on App Store Connect on February 4, 2026, but I don't understand why, as of today (March 2, 2026), its status is still Waiting for Review. I have emailed Developer Support but only received the following automated reply: Thanks for submitting your support request. We’ve received your support request and will get back to you as soon as possible. Your case ID is 102824763035. It has been over ten days, and I still haven’t received any official follow-up or updates from Apple regarding this issue. What should I do now? The email address I use for my Apple Developer account is
Replies
1
Boosts
0
Views
73
Activity
Mar ’26
Calling a Objc method directly from C
I would like to avoid the middle man and call Objective C directly from C Currently I do this This is called from a dispatch table in a pure C file _ctx->mt_render_funcs.mtlEnd(_ctx); Which calls this routine in a obj c file .m void mtlEnd(MTRenderContext mt_ctx) { // Call the Objective-C method using Objective-C syntax [(__bridge id) mt_ctx->mt_render_funcs.mtlObj mtlEnd]; } Which ends up here... in ObjC #pragma mark mtlEnd (void)mtlEnd { // vertex buffer size_t size; size = sizeof(Vertex4ColorNormalTex) * _ctx->vert_eng.current_vertex; [_currentRenderEncoder setVertexBytes:_ctx->vert_eng.vertices length: size atIndex: VertexInputIndexVertices]; [_currentRenderEncoder drawPrimitives:(MTLPrimitiveType)_ctx->vert_eng.prim_type vertexStart:0 vertexCount:_ctx->vert_eng.current_vertex]; } It would simplify this to get rid of one call and call ObjC directly. The other idea is I want to use GCD and put a lock / unlock on the call from C to ensure thread safety so I can use GCD to dispatch
Replies
3
Boosts
0
Views
1.1k
Activity
Mar ’26
Reply to Your development team has reached the maximum number of registered iPhone devices.
Is there any option to reset devices on free account???????
Topic: Code Signing SubTopic: General
Replies
Boosts
Views
Activity
Mar ’26
Email Required for App review
My app requires Google or Apple login. The App Store requires an active email for review. How can the App review team access my email if it required 2FA? I don't understand how I can get an app reviewed it they need me to provide a code after they login? It seems ridiculous that I need to supply them with a test email, why can't they test with a dummy email? Is it just not possible to get an app reviewed if the app requires Apple or Google logins? Should I temporarily add the option for any email to setup an account and just make a dummy email and then after review asap remove the email login from the app? that seems like a lot of unnecessary programming just because they the need me to provide an email address and login.
Replies
1
Boosts
0
Views
89
Activity
Mar ’26
How can I change the output dimensions of a CoreML model in Xcode when the outputs come from a NonMaximumSuppression layer?
After exerting a custom model with nms=True. In Xcode, the outputs show as: confidence: MultiArray (0 × 5) coordinates: MultiArray (0 × 4) I want to set fixed shapes (e.g., 100 × 5, 100 × 4), but Xcode does not allow editing—the shape fields are locked. The model graph shows both outputs come directly from a NonMaximumSuppression layer. Is it possible to set fixed output dimensions for NMS outputs in CoreML?
Replies
2
Boosts
0
Views
232
Activity
Mar ’26
Reply to Enrollment status stuck
I have been waiting 4 days so not quite as long. I tried paying again which annoyingly went through. I have created two support tickets, none of which have been answered. I guess all we can do is wait as there is no way to chase it up it seems UPDATE, i scheduled a call with them, they did it straight away, refund issued and account approved. probably worth trying the same
Replies
Boosts
Views
Activity
Mar ’26
Reply to Provisional Permission is not working as expected in iOS 16
I observed the same for iOS 18. There is a partial workaround: when authorization status is .notDetermined, request only .provisional authorization when authorization status is .authorized (i.e. after the user chose Keep), request [.alert, .badge, .sound] This way you at least get support for badges and sound, but it is still bad because the Lock screen and Banner settings will still be disabled and I think there is no way to re-request them programmatically. Unfortunately this makes provisional authorization kind of undesirable for many use cases.
Replies
Boosts
Views
Activity
Mar ’26
Provisional Permission is not working as expected in iOS 16
We recently developed the provisional permission for our app, but we have noticed that is not working as expected in iOS 16 (We have tested only there). Currently we request the permissions like this: UNUserNotificationCenter.current().requestAuthorization(options: [.alert, .badge, .sound, .provisional]) { [weak self] _, _ in // here we register for pushes in case authorizationStatus is provisional or authorised } What happens is we do get the 1st notification with the keep CTA - once tapped we see that there pops an action: Deliver Immediately, but even though the user selects that, we still see under setting the pushes are marked as Deliver Quietly. In addition to this the sound and bage still stay as toggled off - and the lock screen and banner as well stay off. Basically, nothing changes after the user selects Deliver Immediately
Replies
1
Boosts
0
Views
847
Activity
Mar ’26
Different team ID's on my certs
I've seen a few posts about this online and it seems that Xcode generates random team ID's with it's automatic signing system. But I haven't seen any way to make this work properly. If I log into the dev portal and look at my account, in the upper right I can see my team ID. If I manually generate a cert, I get a totally different one. Question: How can I generate a cert with my proper team ID (my paid account) where the ID's on my certs, identifiers and profiles all match? I've never had this issue before and am unsure how to solve it.
Replies
1
Boosts
0
Views
163
Activity
Mar ’26
Trapped in a "Black Box": Almost 3 weeks of App Review silence and ignored support tickets. Is this normal?
Hi everyone, I am writing this out of pure desperation because I honestly don't know what else to do or where to turn. My app has been stuck in the review process since February 9th (almost 3 weeks now), and I feel like I am completely trapped in a black box. I have tried every official channel available to get at least some information: I submitted requests for an expedited review. I opened 3 separate tickets with Developer Support, but received absolutely zero response. Just complete, deafening silence. I finally called the developer hotline. The representative was polite but completely unhelpful. I was basically told that everything is fine, this timeline is normal, we can't do anything to help you, just keep waiting. Just to put this wait time into perspective, while sitting in this Apple black box waiting for a single message, I have managed to do the following: Registered a Google Play Developer account and fully verified my identity. Almost completely rewrote my entire app from scratch, transl
Replies
2
Boosts
0
Views
201
Activity
Mar ’26
Reply to Apple Developer Program Enrollment Pending for Over 3 Weeks (Identity Verification)
after 3 weeks of back and forth (it takes roughly 5-10 business days for them to reply) I got the email which states that as a gesture of goodwill they will refund me the money and they should hit my account 30-60 days (lol). Problem is I'VE NEVER ASKED for a refund, I just want my dev account to be enabled. It seems that they don't read the tickets regarding dev accounts and just apply simple copypasta as a response (in their first response I got suggestion to follow all the steps I outlined as not-working in my support ticket lol) Obviously I will try to create another account and pay for it but the only problem is that I don't know should I wait up to two months for my money to come back and whole old enrollment procedure to expire or send them a support ticket and wait two weeks for a reply which most likely won't solve any problem ? They're too cryptic with their communication.
Replies
Boosts
Views
Activity
Mar ’26