Search results for

Account Locked

31,782 results found

Post

Replies

Boosts

Views

Activity

Cannot connect to Apple Store Connect
I have an active developer account, but I cannot connect to Apple Store Connect. I was able thought to go to Certificates and create them. When I click on Apps and I am redirected to Apple Store Connect, I need to sign in again and when I do that I get the message below... To access App Store Connect, you must be an individual or team member in the Apple Developer Program, or invited by an individual to access their content in App Store Connect. I have already made 2 support tickets but I have yet to receive an anwser. Any thoughts? Does anyone had the same issue?
2
0
408
Jun ’24
Safari App Extension fails to connect to CloudKit daemon (cloudd) with XPC communication errors -- CKErrorDomain Code=6 / NSCocoaErrorDomain Code=4099 – Unable to connect to CloudKit daemon
I'm working on a macOS app with a Safari web extension. I'm trying to share a SwiftData model between devices using CloudKit synchronization. I am able to get synchronization in the main app on the same device, CloudKit sync works correctly — changes appear in the CloudKit Dashboard under com.apple.coredata.cloudkit.zone. However, in the Safari App Extension, data is saved locally and persists across launches, but never syncs to CloudKit. I have followed the recommended practices for configuring the App Group and entitlements, but the issue persists. Questions: Is there an official limitation preventing Safari App Extensions from connecting to the CloudKit daemon (cloudd)? If not, what entitlements or configuration changes are required for a Safari App Extension to successfully sync with CloudKit? Is the xpc_error=159 from bootstrap_look_up() a known sandbox restriction for this extension type? Any guidance from Apple engineers or others who have successfully used CloudKit from a Safari App Extension would be
2
0
74
Aug ’25
Reply to BGContinuedProcessingTask code pauses when device is locked
I haven't seen anything in the documentation regarding execution of tasks while the phone is locked. So I'm a bit confused if I encountered an iOS bug here? It's possible there's a bug on our side as well, but the issue in your code is that you never call setTaskCompleted(success:) to finish the task. As far as the system is concerned, your task isn't done until you mark it complete, regardless of progress. That means it eventually fails due to lack of progress once your loop stops and the block returns. Is it finishing properly while the device is unlocked? That's actually what's odd here to me. __ Kevin Elliott DTS Engineer, CoreOS/Hardware
Aug ’25
Reply to Can SMAppService Daemon replace SMJobBless for exclusive HID capture from keyboards?
[quote='852554022, felixs, /thread/795686?answerId=852554022#852554022, /profile/felixs'] I wasn't able to use VMs for testing here as I couldn't find a way to make a HID device connected to the host owned by the guest. [/quote] Ah, yeah, that’s a pain. Virtualization framework doesn’t support USB device access, so any VM app based on that is similarly limited. [quote='852554022, felixs, /thread/795686?answerId=852554022#852554022, /profile/felixs'] I also tried resetting TCC for my app [/quote] The tricky part here is that, once you start messing around with code running as root, there are multiple TCC databases to contend with, namely the one for your user account and the one for the system as a whole. That complicates matters. So, anyway, lemme clarify your actual setup. It sounds like you’re: Using an IOHIDManager to discover HID devices. That vends you various IOHIDDevice objects. You choose one and call IOHIDDeviceOpen on it. Is that right? Are you passing in kIOHIDOptionsTypeSeizeDevice? Share
Topic: App & System Services SubTopic: Core OS Tags:
Aug ’25
Reply to Unable to Write to UserDefaults from Widget Extension Despite Correct App Group Configuration
If I may add some info here: you mention Live Activity widget, so I am not sure if you are talking about a Live Activity extension or a Widget extension. But they are similar in their restrictions (although Live Activities are more limited) Due to privacy policies, Live Activity and Widget extensions, which could be able to run on the Lock Screen, have restricted abilities to send any data outside the extension. Widget extensions can read from a shared container but they can’t write to it. Live Activity extensions can’t perform networking and they can’t even write to the logging system. These are sandboxing nuances as you suspect, and can't be circumvented by workarounds or special permissions. Argun Tekant /  DTS Engineer / Core Technologies
Aug ’25
Xcode Cloud: The page you’re looking for can’t be found.
We started seeing an access issue today when attempting to go to the Xcode Cloud tab in App Store Connect. When you navigate to https://appstoreconnect.apple.com/teams/:teamId/apps/:appId/ci we're seeing the following message: The page you’re looking for can’t be found. The page you’re looking for does not exist, or you do not have permission to view it. I am the account holder so it shouldn't be a permissions issue. Is there an ongoing outage or problem in Xcode Cloud? And, if so, where can I monitor this accurately?
14
0
368
Aug ’25
CKShare in iOS 26
I have an app that uses CKShare to allow users to share CloudKit data with other users. With the first build of the iOS 26, I'm seeing a few issues: I'm not able to add myself as a participant anymore when I have the link to a document. Some participants names no longer show up in the app. Looking at the release notes for iOS & iPadOS 26 Beta, there is a CloudKit section with two bullets: CloudKit sharing URLs do not launch third-party apps. (151778655) The request access APIs, such as CKShareRequestAccessOperation, are available in the SDK but are currently nonfunctional. (151878020) It sounds like the first issue is addressed by the first bullet, although the error message makes me wonder if I need to make changes to my iCloud account permissions or something in order to open it. It works fine in iOS 18.5. This is the error I get when I try to open a link to a shared document (I blocked out my email address, which is what was in quotes): As far as the second issue, I am really confused about wh
13
0
234
Aug ’25
Reply to Installing our app interferes with network connection in another app
@DTS Engineer Our customer noticed that if they have the iPad in a state where TN3270 is disconnecting when suspended, allowing the device to auto-lock will allow TN3270 to maintain a connection when suspended. Get the device in a state where TN3270 disconnects when suspended. Close the TN3270 app (and any other apps that would prevent auto-lock) Allow the device to auto-lock Unlock the device TN3270 will now maintain a connection even when suspended or used with EpochField. This behavior persists until the device is restarted. Would you have any idea why auto-locking the device would affect how the kernel decides if a connection gets defuncted? Maybe garbage collection or some other resource optimization routine? Is there anything we can do in the EpochField app to influence whether the TN3270 TCP connection is maintained? Would we be able to invoke, directly or indirectly, the same routine or process involved with the auto-lock workaround? (I know that's a long s
Aug ’25
Are data in an iCloud NSUbiquitousKeyValueStore directly available at app launch on another device?
Hello, I'm planning to had an onboarding to one of my apps. I am thinking about a way for a user to not see the onboarding again if he installs the app on another device. So for example, the user completes the onboarding on its iPhone, then downloads the app on its iPad and launch it, he doesn't see the onboarding a second time. I thought about using iCloud NSUbiquitousKeyValueStored to store the onboarding completion state. But I'm not sure when the data is synced to the other device logged into the same Apple account: Immediately even if the app is not installed on the other device (independent from the app, only iCloud thing)? At the same time as the app install on the other device? After the app is first launched on the other device? Of course synchronisation will depend on the Internet connection, speed, etc. so the app should handle the case where the data is not here but what would be the best case scenario? Thank you, Axel
1
0
54
Aug ’25
StoreKit 2 Sandbox Testing - Product not found
Hi, I've been unable to successfully test in the sandbox environment for a StoreKit 2 subscription group and can't seem to find the missing piece. I am calling the following line of code: let products = try await Product.products(for: [subscriptionID]) Expected behavior: The product is returned in the products array. Actual result: The array is empty I have done the following: Successfully tested our logic using a storekit configuration file locally in Xcode. Created the Subscription group in App Store Connect. The subscription product is currently Waiting for Review, but it is our first so will not be approved without being attached to a distribution build review. Created a Sandbox user account in App Store Connect -> Users -> Sandbox Signed into the sandbox user account in Settings -> Developer -> Sandbox Apple Account Signed the Paid Apps Agreement for our organization A few debugging notes: I deleted all apps before installing from Xcode I've tried both locally and i
1
0
90
Aug ’25
Reply to Unable to sign in managed Apple id in supervised device after Icloud subscription
The message you're describing occurs when a Managed Apple Account has a requirement that the user can only sign in to it as part of enrolling in an account-driven enrollment. When you say that the issue goes away when you remove the subscription, I think you're removing that requirement. However I'm not entirely sure what you're referring to by iCloud subscription. Is that the iCloud access management setting in Apple School Manager or Apple Business Manager? Is it Apple Business Essentials? A couple background details that may help: A device can only have one device management enrollment at a time. An enrollment can be associated with a Managed Apple Account, which makes it an account-driven enrollment. This is locked in at enrollment time. If the enrollment is not account-driven, you can't add a Managed Apple Account to that enrollment. You'll have to unenroll and re-enroll the device to change to an account-driven enrollment.
Aug ’25