Search results for

Account Locked

31,788 results found

Post

Replies

Boosts

Views

Activity

Reply to Tahoe Launchpad
The removal of Launchpad from macOS has cost me a huge amount of wasted time. It is quite baffling why Apple's engineering team thought this was necessary. There is no scenario in which Apple's few predefined categories could possibly ever address the long tail of real world application categories and user workflows. This is a point I make in depth below. Also, I am now encountering a bug preventing me from searching for apps by name, even if I could remember the name of my 250+ native and web apps, so I have no other choice but to scroll through over 250 icons to find the app I'm looking for. I honestly do not understand what the rationale was for this change by Apple. Vital functionality that I relied on with minute-to-minute frequency was replaced with a fundamentally broken one that costs me minutes where it previously took seconds to find apps. In fact it should be obvious that predefined app categories could not possibly address real world use cases and and that forcing users into them would break more
3w
In the iOS 26 beta, enterprise Apps installed via MDM cannot be run
I am a developer working on iOS apps. I would like to report an issue occurring in iOS 26 beta 2. Our company has Enterprise account, and we are developing apps. When we distribute these apps, and install them on a device running iOS 26 beta2, apps install successfully, but apps crashed immediately after being launched. MDM Install Application When I install the app via Xcode and trust it, apps will run. Launchd job spawn failed This issue does not occur on versions prior to iOS 26. I would like to know if this is a problem that will be resolved in future updates, or if it is a policy change.
4
0
797
3w
Turn off Xcode Cloud
Some of my apps are configured to use Xcode Cloud. Some time ago, this service was blocked for developers from Russia. I want to transfer one of my apps to another account. But there is the following requirement in the checklist: You must remove all Xcode Cloud related data from the app you want transferred. I can't do it myself because I see an error in App Store Connect: The page you’re looking for can’t be found.. It is also not available through Xcode. I would like to delete all Xcode Cloud settings for all my apps. Can you help me with this?
3
0
128
3w
Guideline 5.1.1 - Legal - Privacy - Data Collection and Storage
Guideline 5.1.1 - Legal - Privacy - Data Collection and Storage The app does not meet all requirements for apps that offer highly regulated services or handle sensitive user data. Specifically: The account that submits the app must be enrolled in the Apple Developer Program as an organization, and not as an individual. The guideline 5.1.1(ix) requirements give users confidence that apps operating in highly regulated fields or that require sensitive user information are qualified to provide these services and will responsibly manage their data. Next Steps To resolve this issue, it would be appropriate to take the following steps: The app must be submitted through an Apple Developer Program account enrolled as an organization. You may either enroll in a new Apple Developer Program account as an organization, or request that your individual account be converted to an organization account by contacting Apple Developer Support. Please note that you cannot resolve this i
1
0
95
3w
Missing Entitlement. The bundle ... is missing entitlement 'com.apple.developer.networking.networkextension'."
Hello everyone, I'm encountering an issue while trying to publish an app on TestFlight. The app in question is Home Assistant, which I've compiled from the source. I am able to compile and install the app on my device without any problems. My company's developer account is properly configured, and I have set Xcode to automatically manage the provisioning profile. The archive is also created successfully, but when I attempt to upload it to Apple Store Connect for testing via TestFlight, I receive the following error: ERROR: [ContentDelivery.Uploader] Asset validation failed (90525) Missing Entitlement. The bundle 'Home Assistant.app/PlugIns/HomeAssistant-Extensions-PushProvider.appex' is missing entitlement 'com.apple.developer.networking.networkextension'. (ID: ceac6dcc-9c76-412e-8ea7-f2d2845f8013) I've made several attempts to resolve this issue to no avail. For instance, if I add the missing capability manually, then I am informed that the provisioning profile is incorrect. However, checking the ne
8
0
2.9k
3w
App is getting rejected for the same reason with no further explanation
Hello, Our app gets rejected for the reason that the reviewer cannot purchase the subscription with the message, Guideline 2.1 - Performance - App Completeness We found that your in-app purchase products exhibited one or more bugs which create a poor user experience. Specifically, we were unable to purchase Auto-Renewable Subscriptions. The app launched back to the rendering when we tap on the Get started When we test this with our sandbox accounts in test flight version, we can see the subscribe pop up showing and purchase successfully. But turns out they cannot. Unfortunately we cannot see the reason why and even after requesting further explanation regarding how to move along, we are not getting any explanations. Our subscription products are submitted in the first time with the app and they are in In review state for more than a week. We requested phone calls and wrote messages to reviewers many times but unfortunately there's no help yet.
2
0
114
3w
Reply to Sandbox refund testing "Cannot connect" error
Are you able to reproduce and generate a sysdiagnose? Would like to take a look at whats occurring. Attached that to a feedback ticket and include a screen recording, your sandbox Apple Account, physical location and details to what transaction and product you were attempting to test a refund in sandbox with. https://developer.apple.com/bug-reporting/profiles-and-logs/?platform=ios http://feedbackassistant.apple.com Once you file, share the FB# here and we can take a look.
3w
Reply to iOS 26 BETA 4 Safari Web Extension disappearing right after install, "extension" is no longer available.
@MikeDMh Thank you for filing a bug report. Your bug has been closed as a duplicate. That's okay as duplicate bugs are used as an indicator of developer interest (so, don't worry, your bug report matters). Looking at the original bug report it remains open and under investigation. Please continue to test your software in release and pre-release versions of system software made available to you through your developer.apple.com account to see if the problem has been resolved. For beta pre-release versions of system software, please see https://developer.apple.com/download/.
Topic: Safari & Web SubTopic: General Tags:
3w
Reply to Lock Contention in APFS/Kernel?
Thanks y'all! Ed, I'll try running the system trace tomorrow morning (I'm in New York City, so it's the end of the day for me). Kevin: Everything found was largely addressed in macOS 10.14 (Mojave). Ah! Good to know that my information is kinda out of date :) Unfortunately, comparisons between different systems are extremely tricky due to fundamental design differences.” One of macOS’s fundamental design choices is that its goal is to responsive NOT fast.” In other words, the system’s ability to quickly react to the user’s actions is MORE important than the total time it takes to complete any given operation. In the I/O system, that means restricting I/O memory commitments more than Linux, both to reserve memory for other purposes and to reduce the chance that the system will have to stall waiting for memory to be flushed to disk. Understood! Makes a lot of sense given the common, respective usages of Linux vs. macOS! Are you calling fsync or are you doing fcntl(F_FULLFSYNC)? The second call will be significa
Topic: App & System Services SubTopic: Core OS Tags:
3w
Reply to Lock Contention in APFS/Kernel?
Let me start with the comparison here: Similar performance issues were reported in the past by a former Mercurial maintainer: https://gregoryszorc.com/blog/2018/10/29/global-kernel-locks-in-apfs/. Unfortunately, there are some fairly significant flaws in the analysis there. Picking one of his data points: $ time ./slow-readdir.py -l 12 ~/src/firefox ran 12 walks across 12 processes in 172.209s real 2m52.470s user 1m54.053s sys 23m42.808s Based on his overall article, I believe he thinks that test took ~23m when in fact it took ~3m. That is, the actual test time was: ...in 172.209s -> ~2.52 -> real 2m52.470s In general, that's what real means in most time tests -> how long did this test actually take. In terms of the difference in system time, that appears to have been due to an accounting issue in the kernel. Per the investigation that was done on the bug, this particular test script ended up having multiple threads blocked in the kernel (waiting on work to complete) and the kernel included
Topic: App & System Services SubTopic: Core OS Tags:
3w
Reply to No profiles for 'xxx.xxx.xxx.xxx' were found
The app ID is in the team account. I did have a wildcard app ID, but deleting it didn't fix this. I am using automatic code signing, but how do I know which certificates in Keychain Access are invalid? I've got both certificates and private keys in there. Some Apple Distribution, some say Apple Development, one says Developer ID Application. I don't want to delete anything essential, so please advice which one(s) to delete.
3w
Reply to No profiles for 'xxx.xxx.xxx.xxx' were found
Here's some things to try: login to developer.apple.com and check and see if com.os.hub.mth2 inadvertently was registered in your personal account instead of your developer account. If it was, delete it from your personal account. Login to developer.apple.com and check and see if you have a wildcard app id registered in your account. If you do, delete it. If you're using automatic code signing you can delete the invalid certificates in the Keychain Access app. Xcode will download the correct certificates next time you run a build. If that doesn't help, consider opening a support incident so I can take a look at the settings on your machine. https://developer.apple.com/support/technical/
3w
macOS 26 Tahoe beta 1 - Cannot login
A few days ago I installed beta 1 of macOS 26 Tahoe on a spare MacBook Pro 14-inch M4. Everything went well, and it looks okay (well, I don't like it at all, but hey-ho), and I shut it down. I started it up today, and it rejects my login password every time, then locks my account. When I click the link to Restart and show password reset options I'm asked for my Apple ID details, so I enter the correct email and password, then the MBP reboots and I'm back on the login screen with no indication that anything has changed. Guess I'm stuck now... FB18364657
4
0
585
3w
Internet stops working after idle time when using VPN on iOS 26 beta
We have observed an internet access issue after the device enters idle mode on iOS 26 beta 9. Although the Ivanti Secure Access Client appears connected, users are unable to access any resources (internet or intranet) after unlocking the device from idle. When we check the log socket connection looks not disrupted, packets are tunnelled but no resource access. Split tunnel enabled and proxy PAC configured. This was observed on both iOS and iPadOS 26 beta. Steps to reproduce: Connecting to the internet, launching the Ivanti client, locking the device, and then unlocking it after a brief period of idle. The issue occurs when the VPN remains connected but no resources are accessible.
8
0
366
3w