Search results for

“Account Locked”

34,377 results found

Post

Replies

Boosts

Views

Activity

Lock screen media controls for MusicKit/ ApplicationMusicPlayer
Hi, when using ApplicationMusicPlayer from MusicKit my app automatically gets the media controls on the lock screen: Play/ Pause, Skip Buttons, Playback Position etc. I would like to customize these. Tried a bunch of things, e.g. using MPRemoteCommandCenter. So far I haven't had any success. Does anyone know how I can customize the media controls of ApplicationMusicPlayer. Thank you.
2
0
570
Aug ’25
macOS Gamecenter login failure causes system lock
I've found an issue that seems to be present across multiple titles i've tried so far. On macOS, launch a game without a game center Open the GameCenter Access Point overlay (or wait for an auto sign in prompt) Choose Sign in with another account Enter a valid AppleID email address Enter an incorrect password so the login fails The GC prompt then locks up, the password field can't be edited and the pop-up cannot be closed. Pressing cmd+Q does not close the application This occurs on multiple systems running macOS 12.3 but not on a system with macOS 11.3 Anyone else experienced this and found a workaround, or is the Gamecenter login just broken?
0
0
668
Apr ’22
Updating Wallpaper and Lock-screen from an iOS APP
Hi Everyone,We are working on iOS APP using Swift API and this APP gets published only to internal AppStore.As part of this APP, is it possible to implement functionality to dynamically or based on user action, update iOS Device Wallpaper and/or Lock-screen image?Any pointer to specific documentation or example will be helpful.Regards,Kalyan
1
0
3.0k
Nov ’18
iOS Background Bluetooth: BLE scanning when iPhone is locked
I am looking for someone from the team at Apple to help me with a bluetooth issue we are experiencing. I am part of a team that is building a product line with a bluetooth device that requires us to use background bluetooth scanning. The device sends BLE packets periodically and the phone receives these packets and sends the data to our DB. We were able to get background bluetooth packets receiving (although sporadically) on the phone. However we cannot receive any packets while the app is backgrounded and the phone is locked. So my question is two fold: This is more critical: Is there any way to allow scanning while the app is backgrounded and the phone is locked? This is secondary: Is there anyway to make background scanning more reliable/predictable so that we can get consistent readings in the background
7
0
16k
Jul ’20
Lock widget for pro-users
Hi, I have added widgets to my iOS app and I would like to make this feature only accessible to pro users that have made a non-consumable in-app purchase. Currently, I am doing the following: I store an isUnlocked property in the Keychain after the purchase is made I read data to be displayed in the widget and here I also query the Keychain and store whether the widget is unlocked I have no refresh policy, but only change the widget data on a significant time change a different view is displayed when the app is locked Some dummy code snippets: func getTimeline(in context: Context, completion: @escaping (Timeline) -> Void) { ttlet entry = readContents() ttlet timeline = Timeline(entries: [entry], policy: .never) ttcompletion(timeline) } struct WidgetEntryView: View { ttlet entry: Provider.Entry @Environment(.widgetFamily) var family @ViewBuilder var body: some View { switch family { case .systemSmall: if !entry.isUnlocked { LockedWidgetView() } else if let event = entry.event { SmallWidgetEventView
7
0
3.8k
Oct ’20
ios 11 app lock issue
Anyone else getting an error on ios 11 devices when trying to remove a single app mode payload when you have certain settings disabled in the restrictions payloadFor example:1. install restrictions payload with camera disabled, and single app mode locked to an app on the device2. remove the single app mode payload and resend the profile to the deviceThis will result in the following error: The payload contains a restriction that conflicts with an installed Single App Mode payloadWe have found you cannot remove a single app payload when the following restrictions are disabledAllow use of cameraAllow use of FaceTimeAllow use of iMessageAllow installing apps using Apple Configurator and iTunesAllow installing apps using app storeAllow Game CenterAllow iCloud document syncAllow pairing with Apple WatchAllow use of iTunes storeAllow use of PodcastsAllow use of the News appAllow use of the Safari browserThis is definitely not happening on older ios versionsThis seems like a bug to me unless anyone can tell
3
0
1.8k
Oct ’17
Can didRegisterForRemoteNotificationsWithDeviceToken be called in the background or when the device is locked?
Hello, Scenario: My app is running in the foreground, logged into my backend server and I have registered for push notifications and received a push token. I have pin code activated on the phone. I make some code changes and re-flash it in Xcode, the app is running in debug mode wired to Xcode. I put the app in the background and lock the screen and wait 30 sec until data protection is activated and the keychain cannot be accessed. I send a push notification. In this case didRegisterForRemoteNotificationsWithDeviceToken if often called with the same push token as I had before. Data is protected in this state, hence I cannot access the auth token and send the token to the server. In this case it is not needed since the token is the same, but it got me a bit worried. In didRegisterForRemoteNotificationsWithDeviceToken I send the push token to the server, as the Apple docs recommend. My concern now is: could didRegisterForRemoteNotificationsWithDeviceToken be called in a real scenario when the phone is
0
0
684
Mar ’24
Getting Heart Rate Lock outside of a Workout
How can I get the watch to lock onto the heart rate before starting a workout, in the same way that precision start works on the Ultra? In the past it required a special permission and I requested this several times without hearing back. I assume this was because the permission was intended for other app types (meditation etc). However now that precision start is available in the native app it would be great to provide it in my workout app. I looked around for the permission form again but couldn't find it so I was wondering if anyone knows how to do this? Thanks.
0
0
1.1k
Oct ’22
Individual account to organisation account migration
Hi, I requested to migrate my Individual account to organisation account few days back. While the migration is under process, all my apps published under the individual account are unable to receive push messages. Although there is a message on my developer home screen that reads - Certain features of developer account are unavailable during the migration process, I wonder if the push messages are also not available during this time. if it is so, then Apple support team must give a second thought to this unavailability of push messages (Which I guess is due to suspension of certificates in developer account during migration process) which makes certain apps useless without them.
1
0
1.8k
Oct ’20
Dismiss lock screen player after playback is finished in iOS
I am using AVFoundation framework and more specifically AVPlayer along with AVPlayerItem to play an audio content. I am also setting AVAudioSession.sharedInstance().setCategory(AVAudioSessionCategoryPlayback), AVAudioSession.sharedInstance().setActive(true), MPNowPlayingInfoCenter.default().nowPlayingInfo = // some value and using MPRemoteCommandCenter commands. As usual it is showing a default player on iPhone lock screen as shown in figure.My question is once the playback of audio is finished the default iPhone lock screen player does not goes away. I am resetting all the above info e.g AVAudioSession.sharedInstance().setActive(false) and MPNowPlayingInfoCenter.default().nowPlayingInfo = nil and audioPlayer.replaceCurrentItem(with: nil) etc. How can I make this lock screen player hide after the playback is finished.
2
0
1.7k
Apr ’19
iOS 16 Lock Screen Widgets updating
Hello! I am trying to make my complication update info every second, so I could create a timer in it. I already found a solution that helps me to create a timer let components = DateComponents(second: 10) let futureDate = Calendar.current.date(byAdding: components, to: Date())! Text(futureDate, style: .timer) but I want to make a breath timer, so I need to change it to 5 sec timer and then again to 10 sec. Is there any solution that would allow me to update the info that shows in the new iOS 16 Lock Screen Widget in this way?
0
0
760
Jul ’22
Lock screen media controls for MusicKit/ ApplicationMusicPlayer
Hi, when using ApplicationMusicPlayer from MusicKit my app automatically gets the media controls on the lock screen: Play/ Pause, Skip Buttons, Playback Position etc. I would like to customize these. Tried a bunch of things, e.g. using MPRemoteCommandCenter. So far I haven't had any success. Does anyone know how I can customize the media controls of ApplicationMusicPlayer. Thank you.
Replies
2
Boosts
0
Views
570
Activity
Aug ’25
macOS Gamecenter login failure causes system lock
I've found an issue that seems to be present across multiple titles i've tried so far. On macOS, launch a game without a game center Open the GameCenter Access Point overlay (or wait for an auto sign in prompt) Choose Sign in with another account Enter a valid AppleID email address Enter an incorrect password so the login fails The GC prompt then locks up, the password field can't be edited and the pop-up cannot be closed. Pressing cmd+Q does not close the application This occurs on multiple systems running macOS 12.3 but not on a system with macOS 11.3 Anyone else experienced this and found a workaround, or is the Gamecenter login just broken?
Replies
0
Boosts
0
Views
668
Activity
Apr ’22
Reply to How to install Tensorflow on the Apple M1 Notebook
I got locked out of my Apple account for a month - I can't remember why, but I've only just got back in. Meanwhile, I've managed to get Tensorflow working on a MacPro M1 - NO THANKS TO APPLE. Details here: https://stackoverflow.com/questions/56604348/how-to-install-tensorflow-2-0-on-mac-or-linux/68634948#68634948
Topic: Machine Learning & AI SubTopic: General Tags:
Replies
Boosts
Views
Activity
Oct ’21
Updating Wallpaper and Lock-screen from an iOS APP
Hi Everyone,We are working on iOS APP using Swift API and this APP gets published only to internal AppStore.As part of this APP, is it possible to implement functionality to dynamically or based on user action, update iOS Device Wallpaper and/or Lock-screen image?Any pointer to specific documentation or example will be helpful.Regards,Kalyan
Replies
1
Boosts
0
Views
3.0k
Activity
Nov ’18
iOS Background Bluetooth: BLE scanning when iPhone is locked
I am looking for someone from the team at Apple to help me with a bluetooth issue we are experiencing. I am part of a team that is building a product line with a bluetooth device that requires us to use background bluetooth scanning. The device sends BLE packets periodically and the phone receives these packets and sends the data to our DB. We were able to get background bluetooth packets receiving (although sporadically) on the phone. However we cannot receive any packets while the app is backgrounded and the phone is locked. So my question is two fold: This is more critical: Is there any way to allow scanning while the app is backgrounded and the phone is locked? This is secondary: Is there anyway to make background scanning more reliable/predictable so that we can get consistent readings in the background
Replies
7
Boosts
0
Views
16k
Activity
Jul ’20
Lock widget for pro-users
Hi, I have added widgets to my iOS app and I would like to make this feature only accessible to pro users that have made a non-consumable in-app purchase. Currently, I am doing the following: I store an isUnlocked property in the Keychain after the purchase is made I read data to be displayed in the widget and here I also query the Keychain and store whether the widget is unlocked I have no refresh policy, but only change the widget data on a significant time change a different view is displayed when the app is locked Some dummy code snippets: func getTimeline(in context: Context, completion: @escaping (Timeline) -> Void) { ttlet entry = readContents() ttlet timeline = Timeline(entries: [entry], policy: .never) ttcompletion(timeline) } struct WidgetEntryView: View { ttlet entry: Provider.Entry @Environment(.widgetFamily) var family @ViewBuilder var body: some View { switch family { case .systemSmall: if !entry.isUnlocked { LockedWidgetView() } else if let event = entry.event { SmallWidgetEventView
Replies
7
Boosts
0
Views
3.8k
Activity
Oct ’20
Deleting keychain items of speicific app when device lock is removed
Is there a way , to delete the keychain items of a app when device lock (touchId/ passcode ) is removed . We are unable to access the keychain as the device lock is removed , so would like to know if there is a way we can invalidate this .
Replies
2
Boosts
0
Views
518
Activity
Jun ’22
Anybody else having problems with push notifications on the lock screen with 10.3?
If I send a push to a device when the lock screen which has gone to sleep, then the push is waking the device up when it arrives but the push isn't being displayed on the lock screen (it would be beta 10.1).
Replies
1
Boosts
0
Views
284
Activity
Jul ’16
ios 11 app lock issue
Anyone else getting an error on ios 11 devices when trying to remove a single app mode payload when you have certain settings disabled in the restrictions payloadFor example:1. install restrictions payload with camera disabled, and single app mode locked to an app on the device2. remove the single app mode payload and resend the profile to the deviceThis will result in the following error: The payload contains a restriction that conflicts with an installed Single App Mode payloadWe have found you cannot remove a single app payload when the following restrictions are disabledAllow use of cameraAllow use of FaceTimeAllow use of iMessageAllow installing apps using Apple Configurator and iTunesAllow installing apps using app storeAllow Game CenterAllow iCloud document syncAllow pairing with Apple WatchAllow use of iTunes storeAllow use of PodcastsAllow use of the News appAllow use of the Safari browserThis is definitely not happening on older ios versionsThis seems like a bug to me unless anyone can tell
Replies
3
Boosts
0
Views
1.8k
Activity
Oct ’17
Can didRegisterForRemoteNotificationsWithDeviceToken be called in the background or when the device is locked?
Hello, Scenario: My app is running in the foreground, logged into my backend server and I have registered for push notifications and received a push token. I have pin code activated on the phone. I make some code changes and re-flash it in Xcode, the app is running in debug mode wired to Xcode. I put the app in the background and lock the screen and wait 30 sec until data protection is activated and the keychain cannot be accessed. I send a push notification. In this case didRegisterForRemoteNotificationsWithDeviceToken if often called with the same push token as I had before. Data is protected in this state, hence I cannot access the auth token and send the token to the server. In this case it is not needed since the token is the same, but it got me a bit worried. In didRegisterForRemoteNotificationsWithDeviceToken I send the push token to the server, as the Apple docs recommend. My concern now is: could didRegisterForRemoteNotificationsWithDeviceToken be called in a real scenario when the phone is
Replies
0
Boosts
0
Views
684
Activity
Mar ’24
Getting Heart Rate Lock outside of a Workout
How can I get the watch to lock onto the heart rate before starting a workout, in the same way that precision start works on the Ultra? In the past it required a special permission and I requested this several times without hearing back. I assume this was because the permission was intended for other app types (meditation etc). However now that precision start is available in the native app it would be great to provide it in my workout app. I looked around for the permission form again but couldn't find it so I was wondering if anyone knows how to do this? Thanks.
Replies
0
Boosts
0
Views
1.1k
Activity
Oct ’22
10.10.1 beta keeps locking up then logs me out? anyone else?
10.10.1 beta keeps locking up then logs me out? anyone else?
Replies
1
Boosts
0
Views
79
Activity
Sep ’15
Individual account to organisation account migration
Hi, I requested to migrate my Individual account to organisation account few days back. While the migration is under process, all my apps published under the individual account are unable to receive push messages. Although there is a message on my developer home screen that reads - Certain features of developer account are unavailable during the migration process, I wonder if the push messages are also not available during this time. if it is so, then Apple support team must give a second thought to this unavailability of push messages (Which I guess is due to suspension of certificates in developer account during migration process) which makes certain apps useless without them.
Replies
1
Boosts
0
Views
1.8k
Activity
Oct ’20
Dismiss lock screen player after playback is finished in iOS
I am using AVFoundation framework and more specifically AVPlayer along with AVPlayerItem to play an audio content. I am also setting AVAudioSession.sharedInstance().setCategory(AVAudioSessionCategoryPlayback), AVAudioSession.sharedInstance().setActive(true), MPNowPlayingInfoCenter.default().nowPlayingInfo = // some value and using MPRemoteCommandCenter commands. As usual it is showing a default player on iPhone lock screen as shown in figure.My question is once the playback of audio is finished the default iPhone lock screen player does not goes away. I am resetting all the above info e.g AVAudioSession.sharedInstance().setActive(false) and MPNowPlayingInfoCenter.default().nowPlayingInfo = nil and audioPlayer.replaceCurrentItem(with: nil) etc. How can I make this lock screen player hide after the playback is finished.
Replies
2
Boosts
0
Views
1.7k
Activity
Apr ’19
iOS 16 Lock Screen Widgets updating
Hello! I am trying to make my complication update info every second, so I could create a timer in it. I already found a solution that helps me to create a timer let components = DateComponents(second: 10) let futureDate = Calendar.current.date(byAdding: components, to: Date())! Text(futureDate, style: .timer) but I want to make a breath timer, so I need to change it to 5 sec timer and then again to 10 sec. Is there any solution that would allow me to update the info that shows in the new iOS 16 Lock Screen Widget in this way?
Replies
0
Boosts
0
Views
760
Activity
Jul ’22