Search results for

Account Locked

31,787 results found

Post

Replies

Boosts

Views

Activity

Reply to Tap To Pay PaymentCardReader.Token
Hi @xeno71, You wrote: Trying to enable TTP and we're a PSP, from everything I'm reading I'm supposed to provide a reader token to our merchants but can't find anything on it. [...] To integrate the ProximityReader API and use Tap to Pay on iPhone as, you need to request the Tap to Pay on iPhone Entitlement. To access the request form, you need to have an organization-level Apple Developer account and be logged in as the Account Holder. Apple reviews each application using predefined criteria. If your request meets the criteria, Apple adds the entitlement to your developer account using managed capabilities. For more information, see Provisioning with capabilities. Then, you wrote: [...] How do I generate this token? All I know is that it's a jwt and there's some header requirements. Documentation mentions the jwt should include a unique merchant identifier. [...] My question is what does the payload and header look like when signing the jwt? For Payment Service Providers (PSPs), pl
Aug ’25
Reply to BGContinuedProcessingTask code pauses when device is locked
It's still the same as before, but when locked it doesn't always fail the task. But it remains paused and doesn't progress until I wake up the screen. Feedback ID: FB19916760 Thank you for that and this is definitely a bug. The API was intended to keep the device awake, but an oversight meant that if left off the assertion exception that prevented sleep, creating the odd behavior you're seeing. Note that the behavior here isn't directly tied to the device locking, so any other activity that keeps the locked device awake will also mean the task continues to run. I suspect this is also why I haven't seen more reports of issues with this as LOTS of things prevent idle sleep, but in terms of development usage patterns and real-world device usage. In any case, we'll either fix the assertion to keep the device awake (this is what I expect), or we're going to need to update the documentation to try and describe what's going on. __ Kevin Elliott DTS Engineer, CoreOS/Hardware
Aug ’25
BGContinuedProcessingTask code pauses when device is locked
I have been experimenting with the BGContinuedProcessingTask API recently (and published sample code for it https://github.com/infinitepower18/BGContinuedProcessingTaskDemo) I have noticed that if I lock the phone, the code that runs as part of the task stops executing. My sample code simply updates the progress each second until it gets to 100, so it should be completed in 1 minute 40 seconds. However, after locking the phone and checking the lock screen a few seconds later the progress indicator was in the same position as before I locked it. If I leave the phone locked for several minutes and check the lock screen the live activity says Task failed. 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?
4
0
171
Aug ’25
APNs Auth Key download error after revoking old key — “already downloaded” for new key
I created an APNs Auth Key in the Apple Developer portal and downloaded it successfully once. Later, due to some issues, I revoked that key. After that, I created a new APNs Auth Key. The download button appears, but when I click it, I get the message: Auth Key can only be downloaded once. This auth key has already been downloaded. This is incorrect because: The key is newly created in my account. I have tried multiple browsers (Safari, Chrome), private/incognito mode, and even a different laptop. I have no other active APNs Auth Keys in my account. Without this .p8 file, I cannot configure push notifications for my iOS app (using Firebase Cloud Messaging). This is blocking my production release. Has anyone else experienced this? Is there a way to reset or force a fresh APNs Auth Key when this happens?
5
0
286
Aug ’25
Issue with UserDefaults Data Loss after App Transfer and TestFlight Installation
Hello, I recently encountered an issue following the transfer of my app between Apple Developer accounts and would appreciate any insights or solutions. Here's a summary of the situation: App Transfer: I transferred an app from one Apple Developer account to another. The app's bundle ID remained unchanged during this process. App Update: After the transfer, I integrated a new feature into the app and pushed the updated version to TestFlight under the new account. Installation Issue: When I installed the TestFlight version of the app from the new account on my device, which already had the app installed from the old account, the app logged out the user. It appears that the UserDefaults data was not retained, resulting in the loss of stored user data. My hypothesis is that the transfer between accounts caused the user defaults to reset, leading to the data loss. Has anyone else experienced this issue, and if so, are there any recommended solutions or best pr
13
0
1.3k
Jul ’24
Applications stuck in UDP sendto syscall
Hi, We’re seeing our build system (Gradle) get stuck in sendto system calls while trying to communicate with other processes via the local interface over UDP. To the end user it appears that the build is stuck or they will receive an error “Timeout waiting to lock XXX. It is currently in use by another Gradle instance”. But when the process is sampled/profiled, we can see one of the threads is stuck in a sendto system call. The only way to resolve the issue is to kill -s KILL the stuck Gradle process. A part of the JVM level stack trace: jar transforms Thread 12 #90 prio=5 os_prio=31 cpu=0.85ms elapsed=1257.67s tid=0x000000012e6cd400 nid=0x10f03 runnable [0x0000000332f0d000] java.lang.Thread.State: RUNNABLE at sun.nio.ch.DatagramChannelImpl.send0(java.base@17.0.10/Native Method) at sun.nio.ch.DatagramChannelImpl.sendFromNativeBuffer(java.base@17.0.10/DatagramChannelImpl.java:901) at sun.nio.ch.DatagramChannelImpl.send(java.base@17.0.10/DatagramChannelImpl.java:863) at sun.nio.ch.DatagramChannelImpl.
1
0
238
Aug ’25
Reply to External Link Account Modal language
I'm facing the exact same issue. I followed the suggestion from the DTS engineer and confirmed that the correct country code is set for the SKExternalLinkAccount key in my Info.plist file. I also verified the device's Apple Account country settings, but unfortunately, the problem has not been resolved. The situation remains the same: the modal only appears in English when the app is installed via TestFlight. Are there any other things I should check, possible causes, or any workarounds you might be aware of? Any help would be greatly appreciated. Thank you.
Topic: App & System Services SubTopic: StoreKit Tags:
Aug ’25
External Link Account Modal language
Hi All, We are developing our app with an approved External Link Account Entitlement. During the development process (such as installing from Xcode or creating an Ad-hoc build and installing it on a phone), the open() function of the External Link Account API displays the modal our native language. The app only localized to that language. However, after uploading the app with the same configuration to TestFlight, the modal somehow appears in English instead. What could be causing this issue with the External Link Account modal? How can the open() function display the modal in another language when installed from Xcode or an Ad-hoc release build, but in English when installed from TestFlight? How can we show only our native lanugage version only to our Users? Thank you in advance
2
0
150
Mar ’25
Reply to BGContinuedProcessingTask code pauses when device is locked
Sorry for the late response. Just got around to testing it on iOS 26 beta 8. It's still the same as before, but when locked it doesn't always fail the task. But it remains paused and doesn't progress until I wake up the screen. Feedback ID: FB19916760 I've also added setTaskCompleted(success:) and now it shows a tick when the background task is complete.
Aug ’25
Reply to CallKit: Can an app auto-open after answering a VoIP call on lock screen?
After the call is connected from the lock screen, is there any supported way for iOS to bring my app to the foreground automatically when the user later unlocks the device - without requiring the user to manually open the app or tap a notification? No, aside from the obvious option of making it a video call*. *As one small clarification here, I think that, in the context of CallKit, the term video call should be understood as the very broad concept of the call involves visual content the user might want to see, not just one or more users talking into their camera. Content like virtual whiteboards, shared documents, or broadcast video can all be considered valid video calls. Most critically, this is primarily about what the user can see, NOT what their sending- a video call is still a video call, even if the user’s camera isn't or even can't be turned on. If this is not supported, is there any recommended pattern (e.g., specific CallKit/PushKit APIs or entitlements) beyond using a time-sensitive local
Topic: App & System Services SubTopic: General Tags:
Aug ’25
Platform SSO with Entra on Tahoe - Is it working in Beta 1
This test setup is Jamf Pro as the MDM with Entra as the IdP. PSSO is working on Sequoia devices. Prior to Tahoe, PSSO required the following three items: An existing local account, the delivery of Company Portal, and a profile containing PSSO payload. Based on the Tahoe announcement, it looks like PSSO is now available during Setup Assistant, removing the requirement of first creating a local account. I assume this means that the requirements now as easy as deploying Company Portal and the PSSO profile during the Pre-Stage policy. I attempted this on the macOS 26 beta 1 and during Setup Assistant, with the PSSO profile delivered, Setup Assistant prompts me to login to my IdP. However, pressing Continue will result in a failure, notifying me that the application required is not available. The continue button is now inactive but a try again button is available. This results in the loop of trying and then failing, stating that the required application is not available. I eventually must quit S
2
0
261
Jun ’25