Search results for

“Account Locked”

36,223 results found

Post

Replies

Boosts

Views

Activity

App being launched while device is locked
DESCRIPTION OF PROBLEM Logs and data from our application indicate various errors that strongly suggest that our application is being launched in a state in which the device is likely locked. We are looking for guidance on how to identify, debug, reproduce, and fix these cases. Our application does not use any of the common mechanisms for background activity, such as Background App Refresh, Navigation, Audio, etc. Errors we get in our logs such as authorization denied (code: 23) when trying to access a file in our app's container on disk (a simple disk cache for data our application uses) strongly suggest that the device is operating in a state, such as being locked, where our application lacks the requisite permissions it would normally have during operation. Furthermore, attempts to access authentication information stored in the keychain also fails. We use kSecAttrAccessibleWhenUnlocked when accessing items we store in the keychain. We have investigated Prewarming, as well as our notifica
1
0
701
Jan ’25
Is it possible to launch an app while the device is locked?
I am trying to debug some data protection issues I have been having and I am trying to test all sorts of recovery scenarios but one case that I cannot figure out how to run is that of the app launching in the background while the device is locked. Whether it be a standard launching of the application or launching from Background Fetch mode, XCode requires the device to be unlocked. Is there anyway to test this scenario? I have done some research and found that I could setup a BTLE or iBeacon event to launch the app on some event, which would achieve the launching of the app while the device is locked, but that is a lot of work just to get that up and running.So I ask you, developer community, anyone figure out an easier way to launch an app while the phone is locked? I dont care about attaching a debugger as much as I care about actually getting the app to launch without having to wait for random background fetches to execute.Thanks!
0
0
404
Mar ’16
BLE Scanning stops when phone is in locked mode
I have a solution where my application should scan the Bluetooth enabled Beacon devices in the foreground, background, locked mode for the iphone. Currently we have built the project, which is working fine in foreground mode. We have tried exploring multiple options to enable the feature in background and locked mode. As of now, we have come up with the solution which implements Picture in Picture mode in the application and once the application is minimized. The PIP window opens which solves our problem. But the problem stays with locked mode. The scanning is not working in locked mode. So can we know how the bluetooth scanning will work in background and locked mode. Please also mention the alternative solutions to the problem statement if background and locked mode scanning is not possible. I have attached the project source code for reference. This project is being built for Google, so it is bit urgent. Can I expect a quick response to this query?
4
0
1.2k
Sep ’24
Picture in Picture stops audio when phone locked
AVPlayerViewController has the functionality to keep playing the audio when the app is backgrounded or the device is locked. Obviously picture in picture improves this when the app is backgrounded but we lose the functionality when the device is locked as it stops the audio. The user can hit play on the lock-screen to continue playing but doesn't seem to be ideal. Is there any way around this or is the expected behaviour?
3
0
3.4k
Oct ’20
How to detect if an app is locked by the user in iOS 18
Hi, My app features its own lock screen secured by Face ID or Touch ID. With the introduction of the locked app feature in iOS 18, I want to ensure that users do not experience duplicate lock screens. Could you please advise on how to detect if the locked app feature is enabled in iOS 18, so I can disable my app's internal lock screen when necessary? Thank you!
1
0
665
Jun ’24
Caps lock reporting behavior
I am developing a bluetooth keyboard and I have the following question. This might be more appropriate for the HID people to answer.Traditionally when caps lock is pressed on a pc , an hid report is sent from host to the device to enable/ disable the keyboards led. Ie the leds are managed by the host in order to avoid confusion when multiple keyboards are connected. It seems that macOS only sends a turn off led report rather than both an on and off. Is this the desired behavior?Thank you,Yiangos
0
0
613
Sep ’17
Picture in Picture stops audio when phone locked
AVPlayerViewController has the functionality to keep playing the audio when the app is backgrounded or the device is locked. Obviously picture in picture improves this when the app is backgrounded but we lose the functionality when the device is locked as it stops the audio. The user can hit play on the lock-screen to continue playing but doesn't seem to be ideal. Is there any way around this or is the expected behaviour?
1
0
884
Oct ’20
Key Logging Under Catalina While Locked
Hi!My app wants to intercept/receive user keystrokes while the app is running and the macOS computer is locked. However, when the computer is locked, my code receives the first keystroke by the user, then the login window appears, and then even if the login window disappears the code does not receive any subsequent keystroke from the user. Only when the computer is unlocked and then locked again does my app receive any subsequent keystroke from the user.This behavior was not present on Mojave or High Sierra.Is this a Catalina security policy? No error is provided - my code is using IOKit routines to setup callbacks to receive user keypresses. I have attempted to reinitialize all the IOKit objects/callbacks while in the background but that did not result in my app receiving subsequent keystrokes.My app doesn't record the keys - it only notes the time at which it's told a key was pressed.Thanks,Karl
0
0
483
Jan ’20
App being launched while device is locked
DESCRIPTION OF PROBLEM Logs and data from our application indicate various errors that strongly suggest that our application is being launched in a state in which the device is likely locked. We are looking for guidance on how to identify, debug, reproduce, and fix these cases. Our application does not use any of the common mechanisms for background activity, such as Background App Refresh, Navigation, Audio, etc. Errors we get in our logs such as authorization denied (code: 23) when trying to access a file in our app's container on disk (a simple disk cache for data our application uses) strongly suggest that the device is operating in a state, such as being locked, where our application lacks the requisite permissions it would normally have during operation. Furthermore, attempts to access authentication information stored in the keychain also fails. We use kSecAttrAccessibleWhenUnlocked when accessing items we store in the keychain. We have investigated Prewarming, as well as our notifica
Replies
1
Boosts
0
Views
701
Activity
Jan ’25
Is it possible to launch an app while the device is locked?
I am trying to debug some data protection issues I have been having and I am trying to test all sorts of recovery scenarios but one case that I cannot figure out how to run is that of the app launching in the background while the device is locked. Whether it be a standard launching of the application or launching from Background Fetch mode, XCode requires the device to be unlocked. Is there anyway to test this scenario? I have done some research and found that I could setup a BTLE or iBeacon event to launch the app on some event, which would achieve the launching of the app while the device is locked, but that is a lot of work just to get that up and running.So I ask you, developer community, anyone figure out an easier way to launch an app while the phone is locked? I dont care about attaching a debugger as much as I care about actually getting the app to launch without having to wait for random background fetches to execute.Thanks!
Replies
0
Boosts
0
Views
404
Activity
Mar ’16
Fetching mac location in locked devices.
It seems like find my mac is able to fetch the device location even if the device is in locked state. Why can’t other apps do the same.
Replies
0
Boosts
0
Views
278
Activity
Mar ’25
show caps lock icon in textField
That'a OSX App, XCode 9.2.Is there a way (in IB) to show at the right of a textField that caps is locked ? Or must it be done programmatically only ?
Topic: UI Frameworks SubTopic: AppKit Tags:
Replies
0
Boosts
0
Views
826
Activity
Nov ’17
BLE Scanning stops when phone is in locked mode
I have a solution where my application should scan the Bluetooth enabled Beacon devices in the foreground, background, locked mode for the iphone. Currently we have built the project, which is working fine in foreground mode. We have tried exploring multiple options to enable the feature in background and locked mode. As of now, we have come up with the solution which implements Picture in Picture mode in the application and once the application is minimized. The PIP window opens which solves our problem. But the problem stays with locked mode. The scanning is not working in locked mode. So can we know how the bluetooth scanning will work in background and locked mode. Please also mention the alternative solutions to the problem statement if background and locked mode scanning is not possible. I have attached the project source code for reference. This project is being built for Google, so it is bit urgent. Can I expect a quick response to this query?
Replies
4
Boosts
0
Views
1.2k
Activity
Sep ’24
Picture in Picture stops audio when phone locked
AVPlayerViewController has the functionality to keep playing the audio when the app is backgrounded or the device is locked. Obviously picture in picture improves this when the app is backgrounded but we lose the functionality when the device is locked as it stops the audio. The user can hit play on the lock-screen to continue playing but doesn't seem to be ideal. Is there any way around this or is the expected behaviour?
Replies
3
Boosts
0
Views
3.4k
Activity
Oct ’20
How to detect if an app is locked by the user in iOS 18
Hi, My app features its own lock screen secured by Face ID or Touch ID. With the introduction of the locked app feature in iOS 18, I want to ensure that users do not experience duplicate lock screens. Could you please advise on how to detect if the locked app feature is enabled in iOS 18, so I can disable my app's internal lock screen when necessary? Thank you!
Replies
1
Boosts
0
Views
665
Activity
Jun ’24
Caps lock reporting behavior
I am developing a bluetooth keyboard and I have the following question. This might be more appropriate for the HID people to answer.Traditionally when caps lock is pressed on a pc , an hid report is sent from host to the device to enable/ disable the keyboards led. Ie the leds are managed by the host in order to avoid confusion when multiple keyboards are connected. It seems that macOS only sends a turn off led report rather than both an on and off. Is this the desired behavior?Thank you,Yiangos
Replies
0
Boosts
0
Views
613
Activity
Sep ’17
Apple Configurator 2 - Lock Profile
How do you lock a profile in Apple Configurator 2 for a Manually Supervised Device
Replies
1
Boosts
0
Views
2.6k
Activity
Jul ’17
Picture in Picture stops audio when phone locked
AVPlayerViewController has the functionality to keep playing the audio when the app is backgrounded or the device is locked. Obviously picture in picture improves this when the app is backgrounded but we lose the functionality when the device is locked as it stops the audio. The user can hit play on the lock-screen to continue playing but doesn't seem to be ideal. Is there any way around this or is the expected behaviour?
Replies
1
Boosts
0
Views
884
Activity
Oct ’20
Reply to Too many verification codes have been sent.
I am experiencing the same issue. Do you have an Apple device associated with your Apple account? I’ve been locked out for 6 weeks. The “too many codes” issue does not seem to clear itself no matter how long I wait in between login attempts.
Replies
Boosts
Views
Activity
May ’25
Key Logging Under Catalina While Locked
Hi!My app wants to intercept/receive user keystrokes while the app is running and the macOS computer is locked. However, when the computer is locked, my code receives the first keystroke by the user, then the login window appears, and then even if the login window disappears the code does not receive any subsequent keystroke from the user. Only when the computer is unlocked and then locked again does my app receive any subsequent keystroke from the user.This behavior was not present on Mojave or High Sierra.Is this a Catalina security policy? No error is provided - my code is using IOKit routines to setup callbacks to receive user keypresses. I have attempted to reinitialize all the IOKit objects/callbacks while in the background but that did not result in my app receiving subsequent keystrokes.My app doesn't record the keys - it only notes the time at which it's told a key was pressed.Thanks,Karl
Replies
0
Boosts
0
Views
483
Activity
Jan ’20
Reply to Not able to buy Apple TV Developer Kit
I have the same issue, a member on here has said you need to email developer support...the turn around for that is a day....I think it will take longer.Can I ask though, do you have an Apple Music Subscription? - I think my account is locked for country changes until it expires.
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Sep ’15