Search results for

“DTiPhoneSimulatorErrorDomain Code 2”

162,376 results found

Post

Replies

Boosts

Views

Activity

Reply to MCRestrictionsPayload (allowListedAppBundleIDs) breaks Apple Watch native app enumeration — `nanotimekitcompaniond` reports "Missing .app from directory: /Watch/"
Update — root cause found and a working workaround I cracked it. Posting the solution here so other admins can stop trying random bundle IDs. Root cause (confirmed via watchOS sysdiagnose) When you install a profile with com.apple.applicationaccess + allowListedAppBundleIDs, lsd on the paired Apple Watch immediately sends uninstalledNotifications for every PluginKit extension whose bundle ID is NOT in the whitelist. The watch's Carousel then cascades by terminating the parent apps that own those extensions, disguising the action as user initiated quit. Captured from watchOS sysdiagnose at the moment of profile install: 17:22:56 lsd: Sending uninstalledNotifications for ( pluginID=com.apple.MobileSMS.MessagesAssistantExtension pluginID=com.apple.tincan.SiriExtension pluginID=com.apple.SessionTrackerApp.SessionTrackerSiriExtension ) 17:23:13 Carousel: com.apple.MobileSMS: terminateApplication - uninstalling app (user initiated quit) 17:23:13 Carousel: com.apple.tincan: terminateApplication - uninstalling app (u
2w
Organization Development Account Creation issue
I submitted my paperwork on May 5 to development support to verify my organization and my signing ability for my organization and I have not heard anything back to this day. I know that these things are supposed to only take two business days. So I’ve also emailed and have not heard back. Has anybody ever had these issues before? And is there a way to contact Apple that’s not requesting a phone call I work full-time and cannot receive phone calls while I’m at work so that’s not a feasible option for me. Hopefully somebody will see this from support and respond to my emails and or submission.
1
0
60
2w
Reply to How do I make an editable NSTextField wrap inside an NSTableView cell?
This is a tricky aspect of NSTextField in table views. usesAutomaticRowHeights relies on the text field's intrinsicContentSize to determine row height. When isEditable is true, NSTextField internally changes its sizing behavior and stops reporting a multi-line intrinsic height, so the row collapses to a single line. Your observation that the text still wraps internally but the cell height doesn't update is exactly right. The fix is to stop using usesAutomaticRowHeights for editable text fields and calculate row heights manually using tableView(_:heightOfRow:). Use a separate non-editable text field as a measurement prototype — since non-editable text fields calculate wrapping height correctly — and call noteHeightOfRows(withIndexesChanged:) when the text changes so the row resizes as someone types. Here is a working example: // Prototype field for height measurement (non-editable, so wrapping height is correct) let measureField: NSTextField = { let tf = NSTextField(wrappingLabelWithString: ) tf.isEditable = f
Topic: UI Frameworks SubTopic: AppKit Tags:
2w
Reply to Could not launch app on watchOS downloaded from TestFlight
I’m seeing what appears to be the same issue with my watch app distributed through TestFlight. For a small subset of users, the watch app icon stops opening entirely after the app has been installed and working for a while. Complications/widgets continue to work, but tapping the app icon does nothing. There’s no normal crash report. I pulled a sysdiagnose from one affected user, and the watch logs showed repeated launch denials for the main watch app bundle with messages like: signature state: Profile Missing, reason: Provisioning Profile Not Found Unable to launch because it has an invalid code signature, inadequate entitlements or its profile has not been explicitly trusted by the user cannot launch untrusted application I also saw MobileInstallation log: _InstallProvisioningProfile: Could not install embedded profile: 0xe800801f (Attempted to install a Beta profile without the proper entitlement.) What’s especially confusing is that: the same TestFlight build works fine on many other watches compl
Topic: App & System Services SubTopic: General Tags:
2w
Reply to ESP32 USB-C to iPhone 16 USB-C communication
If I have to go from iPhone->USB-C->to Ethernet to a hub, I assume I will be using something like a local area network to communicate between the two devices? Yes. However: In the full setup above (using real wired Ethernet) you don't actually need an additional hub. The two devices can communicate directly without a hub in the middle. The details are below, but you can use that logical architecture, but configure your ESP32-S3 to act as the iOS device's USB to Ethernet adaptor. At that point, you're just plugging the USB cable directly into the iOS device. If so, do you think this concept is a good idea? I see that the ESP32-S3 can have a USB-and-ethernet as a host mode. If I use a combination of USB-C-to-Ethernet Adapters like so, do you think I can bypass needing additional hardware? As a late follow-up on this, I believe the ESP32-S3 can be configured to run as a NCM (Network Control Model) device, which basically turns it into an Ethernet over USB accessory. I think Espressif even
Topic: App & System Services SubTopic: Hardware Tags:
2w
Reply to CarPlay Display Issue: Missing Images After Extended Navigation
Hello! Two of the customers of my app have reported this same behavior (IONIQ 5 Companion). Both reported it happening with third party wireless CarPlay adapters, and in both cases the issue was only resolved by rebooting their iPhones. Please see: https://github.com/gburlingame/ioniq-app/issues/33 and https://github.com/gburlingame/ioniq-app/issues/28 for screenshots. These are two engaged customers, and I'm glad to work with them to help understand and resolve whatever is happening.
2w
AVPlayerView. Internal constraints conflicts
I’m getting Auto Layout constraint conflict warnings related to AVPlayerView in my project. I’ve reproduced the issue on macOS Tahoe 26.2. The conflict appears to originate inside AVPlayerView itself, between its internal subviews, rather than in my own layout code. This issue can be easily reproduced in an empty project by simply adding an AVPlayerView as a subview using the code below. class ViewController: NSViewController { override func viewDidLoad() { super.viewDidLoad() let playerView = AVPlayerView() view.addSubview(playerView) } } After presenting that view controller, the following Auto Layout constraint conflict warnings appear in the console: Conflicting constraints detected: . Will attempt to recover by breaking . Unable to simultaneously satisfy constraints: ( , , , , , , , = AVEventPassthroughView:0xb33cfb480.leading + 6 (active)> ) Will attempt to recover by breaking constraint Set the NSUserDefault NSConstraintBasedLayoutVisualizeMutuallyExclusiveConstraints to YES to ha
4
0
1.1k
2w
Reply to Could not launch app on watchOS downloaded from TestFlight
Small extra detail from our latest sysdiagnose, in case it helps compare notes. The suspicious part for us is that the same two Watch-side profile IDs appear to be installed during the TestFlight update, then removed a few minutes later. Rough sequence, with app/profile IDs masked: 16:30:51 - iPhone AppConduit sees as updated/trusted and starts the install path. 16:30:51 - iPhone AppConduit also logs: ACXRemoteAppList ... App database is out of sync. 16:30:52 - iPhone/TestFlight asks the Watch for its provisioning profile list. 16:30:53 - iPhone/TestFlight requests two installProvisioningProfileWithData operations via AppConduit. 16:30:54 - Watch AppConduit installs profile . 16:30:54 - Watch AppConduit installs profile . 16:31:08 - Watch MobileInstallation starts installing the new Watch app bundle. 16:31:10 - Watch MobileInstallation reports the install succeeded for the new Watch app build. 16:31:11 - iPhone AppConduit marks as installed. 16:32:07 - The Watch app launches successfully aft
Topic: App & System Services SubTopic: General Tags:
2w
RealityView Camera Target Error when set while Orbiting
When interacting with RealityView’s realityViewCameraControls .orbit and setting a new RealityViewCameraContent .cameraTarget, the resulting camera target and camera orbit is incorrect. This can be demonstrated where one finger is orbiting the RealityView, and another pushes a button which changes the camera target. Instead of the camera facing the new target, some point in the scene is the new effective camera target and orbit point. This only occurs when an orbit interaction is currently taking place. If you stop interacting with the orbit, change target, then start orbit interacting again, everything works as expected. Though this example uses two-touches, any change of the camera target has this conflict with orbit interaction. This means interacting with orbit will result in the wrong camera view which is unexpected for users and difficult to reconcile or detect, for developers. Expected: Interacting (orbiting) the scene while setting a new camera target with the buttons on screen (at the same t
2
0
608
2w
tensorflow 2.20 broken support
Hi, testing latest tensorflow-metal plugin with tensorflow 2.20 doesn't work.. using python Python 3.12.11 (main, Jun 3 2025, 15:41:47) [Clang 17.0.0 (clang-1700.0.13.3)] on darwin simple testing shows error: import tensorflow as tf Traceback (most recent call last): File , line 1, in File /Users/obg/npu/venv-tf/lib/python3.12/site-packages/tensorflow/init.py, line 438, in _ll.load_library(_plugin_dir) File /Users/obg/npu/venv-tf/lib/python3.12/site-packages/tensorflow/python/framework/load_library.py, line 151, in load_library py_tf.TF_LoadLibrary(lib) tensorflow.python.framework.errors_impl.NotFoundError: dlopen(/Users/obg/npu/venv-tf/lib/python3.12/site-packages/tensorflow-plugins/libmetal_plugin.dylib, 0x0006): Library not loaded: @rpath/_pywrap_tensorflow_internal.so Referenced from: <8B62586B-B082-3113-93AB-FD766A9960AE> /Users/obg/npu/venv-tf/lib/python3.12/site-packages/tensorflow-plugins/libmetal_plugin.dylib Reason: tried: '/Users/obg/npu/venv-tf/lib/python3.12/site-packages/tensorflow-plugins
2
0
1.7k
2w
Reply to Could not launch app on watchOS downloaded from TestFlight
@ppwqgtl That “Profile Missing / Provisioning Profile Not Found” line is extremely interesting. We just captured a fresh sysdiagnose from our own recurrence and it now looks very similar. In our latest case, the sequence was: TestFlight installed our iOS app and paired Watch app build. AppConduit/MobileInstallation reported the Watch app install succeeded. The Watch app launched successfully once after the update. A few minutes later, TestFlight queried installed beta Watch apps and found our Watch app still installed. Immediately after that, TestFlight/appconduitd removed two Watch-side provisioning profiles. The next watch app launch failed before our app process started with the same security/profile trust denial. The files where we saw this were: iPhone sysdiagnose: logs/AppConduit/AppConduit.log.0 logs/AppConduit/AppConduit.log.1 logs/MobileInstallation/mobile_installation.log.0 Watch sysdiagnose: logs/AppConduit/AppConduit.log.0 logs/MobileInstallation/mobile_installation.log.0 The most useful
Topic: App & System Services SubTopic: General Tags:
2w
MagSafe 4 LED physics
The MagSafe 3 cable is an amazing piece of engineering, showing charged as green and charging as amber. Please consider that carging, and full or reached charging limit, is green, but in case you are far away, you need an estimate of battery percentage. A software magsafe update, like macOS 26.5 was very noticeable for me, as i have the charging limit set on 80%. A new MagSafe 4 would be a simple MagSafe 3 update, adding a yellow colour. it should be simple, here is the code: // 1. CRITICAL SAFETY CUT-OFF // If the system detects a hardware/thermal failure, // it cuts power and pulses RED. if (criticalError) { setLED(PULSING_RED); return; } // 2. SLOW CHARGER DETECTION // Logic: Air < 30W OR Pro < 70W triggers Pulsing Yellow. if ((isAir() && wattage < 30) || (isPro() && wattage < 70)) { setLED(PULSING_YELLOW); return; } // 3. CAPACITY GRADIENT // Simple, clear visual feedback based on your percentages. if (soc < 50) { setLED(COLOR_AMBER); // 0-50% } else if (so
Topic: Design SubTopic: General
2
0
210
2w
AlarmKit Volume and Volume Buttons
Excited for AlarmKit! I have found two concerns that I cannot find answers for though. The volume of my alarms seems to be very quite relative to the full volume capability of the device. For example, if I turn the volume all the way up and play the audio file, the sound is very loud. However then, if I set the alarm using alarm kit with the same audio, the track played during the alerting phase is not that loud. I am afraid that it will not be loud enough in real life. Will there be future support to set the volume level of the alarm to maximum settings? When I press the volume buttons (with the app open) during an active alarm, the audio stops, but the alarm manager does not clear these events. The alarm manager does clear the alarm event if the alarm is stopped through a live activity.
5
0
656
2w
Reply to Could not launch app on watchOS downloaded from TestFlight
@ppwqgtl Small correction/update from our side: my earlier reply saying reboot fixed this was wrong. In the latest reproduction, a normal Apple Watch reboot did not recover the app. Deleting/reinstalling from TestFlight does recover it. Separately, one affected watch recovered after the battery drained completely, was left dead for hours, then charged/cold-booted. So this seems more persistent than a simple in-memory bad state. Our latest read is still that this is not an app crash. In the failed state, our app process is never created, there are no app startup logs, and launching with devicectl fails before our code runs with the same Security / RequestDenied shape. The strongest evidence we have now is around AppConduit / paired app state. In iPhone sysdiagnose we see AppConduit / ACXRemoteAppList reporting that the “App database is out of sync” around the relevant window. That lines up with the symptoms: the TestFlight watch app was installed, had launched successfully earlier on the same build/de
Topic: App & System Services SubTopic: General Tags:
2w
Reply to MCRestrictionsPayload (allowListedAppBundleIDs) breaks Apple Watch native app enumeration — `nanotimekitcompaniond` reports "Missing .app from directory: /Watch/"
Update — root cause found and a working workaround I cracked it. Posting the solution here so other admins can stop trying random bundle IDs. Root cause (confirmed via watchOS sysdiagnose) When you install a profile with com.apple.applicationaccess + allowListedAppBundleIDs, lsd on the paired Apple Watch immediately sends uninstalledNotifications for every PluginKit extension whose bundle ID is NOT in the whitelist. The watch's Carousel then cascades by terminating the parent apps that own those extensions, disguising the action as user initiated quit. Captured from watchOS sysdiagnose at the moment of profile install: 17:22:56 lsd: Sending uninstalledNotifications for ( pluginID=com.apple.MobileSMS.MessagesAssistantExtension pluginID=com.apple.tincan.SiriExtension pluginID=com.apple.SessionTrackerApp.SessionTrackerSiriExtension ) 17:23:13 Carousel: com.apple.MobileSMS: terminateApplication - uninstalling app (user initiated quit) 17:23:13 Carousel: com.apple.tincan: terminateApplication - uninstalling app (u
Replies
Boosts
Views
Activity
2w
Organization Development Account Creation issue
I submitted my paperwork on May 5 to development support to verify my organization and my signing ability for my organization and I have not heard anything back to this day. I know that these things are supposed to only take two business days. So I’ve also emailed and have not heard back. Has anybody ever had these issues before? And is there a way to contact Apple that’s not requesting a phone call I work full-time and cannot receive phone calls while I’m at work so that’s not a feasible option for me. Hopefully somebody will see this from support and respond to my emails and or submission.
Replies
1
Boosts
0
Views
60
Activity
2w
Reply to How do I make an editable NSTextField wrap inside an NSTableView cell?
This is a tricky aspect of NSTextField in table views. usesAutomaticRowHeights relies on the text field's intrinsicContentSize to determine row height. When isEditable is true, NSTextField internally changes its sizing behavior and stops reporting a multi-line intrinsic height, so the row collapses to a single line. Your observation that the text still wraps internally but the cell height doesn't update is exactly right. The fix is to stop using usesAutomaticRowHeights for editable text fields and calculate row heights manually using tableView(_:heightOfRow:). Use a separate non-editable text field as a measurement prototype — since non-editable text fields calculate wrapping height correctly — and call noteHeightOfRows(withIndexesChanged:) when the text changes so the row resizes as someone types. Here is a working example: // Prototype field for height measurement (non-editable, so wrapping height is correct) let measureField: NSTextField = { let tf = NSTextField(wrappingLabelWithString: ) tf.isEditable = f
Topic: UI Frameworks SubTopic: AppKit Tags:
Replies
Boosts
Views
Activity
2w
How do we get more information about the delivery status of the AirPods Max and certificate?
I was selected as one of the winners for the recent Swift Student Challenge, and I was wondering if we will get more information regarding the delivery of the AirPods Max 2 and the certificate? Were these already delivered? I haven't received any email about this, so I wanted to ask here.
Replies
6
Boosts
0
Views
1.9k
Activity
2w
Reply to Could not launch app on watchOS downloaded from TestFlight
I’m seeing what appears to be the same issue with my watch app distributed through TestFlight. For a small subset of users, the watch app icon stops opening entirely after the app has been installed and working for a while. Complications/widgets continue to work, but tapping the app icon does nothing. There’s no normal crash report. I pulled a sysdiagnose from one affected user, and the watch logs showed repeated launch denials for the main watch app bundle with messages like: signature state: Profile Missing, reason: Provisioning Profile Not Found Unable to launch because it has an invalid code signature, inadequate entitlements or its profile has not been explicitly trusted by the user cannot launch untrusted application I also saw MobileInstallation log: _InstallProvisioningProfile: Could not install embedded profile: 0xe800801f (Attempted to install a Beta profile without the proper entitlement.) What’s especially confusing is that: the same TestFlight build works fine on many other watches compl
Topic: App & System Services SubTopic: General Tags:
Replies
Boosts
Views
Activity
2w
Reply to ESP32 USB-C to iPhone 16 USB-C communication
If I have to go from iPhone->USB-C->to Ethernet to a hub, I assume I will be using something like a local area network to communicate between the two devices? Yes. However: In the full setup above (using real wired Ethernet) you don't actually need an additional hub. The two devices can communicate directly without a hub in the middle. The details are below, but you can use that logical architecture, but configure your ESP32-S3 to act as the iOS device's USB to Ethernet adaptor. At that point, you're just plugging the USB cable directly into the iOS device. If so, do you think this concept is a good idea? I see that the ESP32-S3 can have a USB-and-ethernet as a host mode. If I use a combination of USB-C-to-Ethernet Adapters like so, do you think I can bypass needing additional hardware? As a late follow-up on this, I believe the ESP32-S3 can be configured to run as a NCM (Network Control Model) device, which basically turns it into an Ethernet over USB accessory. I think Espressif even
Topic: App & System Services SubTopic: Hardware Tags:
Replies
Boosts
Views
Activity
2w
Reply to CarPlay Display Issue: Missing Images After Extended Navigation
Hello! Two of the customers of my app have reported this same behavior (IONIQ 5 Companion). Both reported it happening with third party wireless CarPlay adapters, and in both cases the issue was only resolved by rebooting their iPhones. Please see: https://github.com/gburlingame/ioniq-app/issues/33 and https://github.com/gburlingame/ioniq-app/issues/28 for screenshots. These are two engaged customers, and I'm glad to work with them to help understand and resolve whatever is happening.
Replies
Boosts
Views
Activity
2w
AVPlayerView. Internal constraints conflicts
I’m getting Auto Layout constraint conflict warnings related to AVPlayerView in my project. I’ve reproduced the issue on macOS Tahoe 26.2. The conflict appears to originate inside AVPlayerView itself, between its internal subviews, rather than in my own layout code. This issue can be easily reproduced in an empty project by simply adding an AVPlayerView as a subview using the code below. class ViewController: NSViewController { override func viewDidLoad() { super.viewDidLoad() let playerView = AVPlayerView() view.addSubview(playerView) } } After presenting that view controller, the following Auto Layout constraint conflict warnings appear in the console: Conflicting constraints detected: . Will attempt to recover by breaking . Unable to simultaneously satisfy constraints: ( , , , , , , , = AVEventPassthroughView:0xb33cfb480.leading + 6 (active)> ) Will attempt to recover by breaking constraint Set the NSUserDefault NSConstraintBasedLayoutVisualizeMutuallyExclusiveConstraints to YES to ha
Replies
4
Boosts
0
Views
1.1k
Activity
2w
Reply to Could not launch app on watchOS downloaded from TestFlight
Small extra detail from our latest sysdiagnose, in case it helps compare notes. The suspicious part for us is that the same two Watch-side profile IDs appear to be installed during the TestFlight update, then removed a few minutes later. Rough sequence, with app/profile IDs masked: 16:30:51 - iPhone AppConduit sees as updated/trusted and starts the install path. 16:30:51 - iPhone AppConduit also logs: ACXRemoteAppList ... App database is out of sync. 16:30:52 - iPhone/TestFlight asks the Watch for its provisioning profile list. 16:30:53 - iPhone/TestFlight requests two installProvisioningProfileWithData operations via AppConduit. 16:30:54 - Watch AppConduit installs profile . 16:30:54 - Watch AppConduit installs profile . 16:31:08 - Watch MobileInstallation starts installing the new Watch app bundle. 16:31:10 - Watch MobileInstallation reports the install succeeded for the new Watch app build. 16:31:11 - iPhone AppConduit marks as installed. 16:32:07 - The Watch app launches successfully aft
Topic: App & System Services SubTopic: General Tags:
Replies
Boosts
Views
Activity
2w
RealityView Camera Target Error when set while Orbiting
When interacting with RealityView’s realityViewCameraControls .orbit and setting a new RealityViewCameraContent .cameraTarget, the resulting camera target and camera orbit is incorrect. This can be demonstrated where one finger is orbiting the RealityView, and another pushes a button which changes the camera target. Instead of the camera facing the new target, some point in the scene is the new effective camera target and orbit point. This only occurs when an orbit interaction is currently taking place. If you stop interacting with the orbit, change target, then start orbit interacting again, everything works as expected. Though this example uses two-touches, any change of the camera target has this conflict with orbit interaction. This means interacting with orbit will result in the wrong camera view which is unexpected for users and difficult to reconcile or detect, for developers. Expected: Interacting (orbiting) the scene while setting a new camera target with the buttons on screen (at the same t
Replies
2
Boosts
0
Views
608
Activity
2w
tensorflow 2.20 broken support
Hi, testing latest tensorflow-metal plugin with tensorflow 2.20 doesn't work.. using python Python 3.12.11 (main, Jun 3 2025, 15:41:47) [Clang 17.0.0 (clang-1700.0.13.3)] on darwin simple testing shows error: import tensorflow as tf Traceback (most recent call last): File , line 1, in File /Users/obg/npu/venv-tf/lib/python3.12/site-packages/tensorflow/init.py, line 438, in _ll.load_library(_plugin_dir) File /Users/obg/npu/venv-tf/lib/python3.12/site-packages/tensorflow/python/framework/load_library.py, line 151, in load_library py_tf.TF_LoadLibrary(lib) tensorflow.python.framework.errors_impl.NotFoundError: dlopen(/Users/obg/npu/venv-tf/lib/python3.12/site-packages/tensorflow-plugins/libmetal_plugin.dylib, 0x0006): Library not loaded: @rpath/_pywrap_tensorflow_internal.so Referenced from: <8B62586B-B082-3113-93AB-FD766A9960AE> /Users/obg/npu/venv-tf/lib/python3.12/site-packages/tensorflow-plugins/libmetal_plugin.dylib Reason: tried: '/Users/obg/npu/venv-tf/lib/python3.12/site-packages/tensorflow-plugins
Replies
2
Boosts
0
Views
1.7k
Activity
2w
Reply to Could not launch app on watchOS downloaded from TestFlight
@ppwqgtl That “Profile Missing / Provisioning Profile Not Found” line is extremely interesting. We just captured a fresh sysdiagnose from our own recurrence and it now looks very similar. In our latest case, the sequence was: TestFlight installed our iOS app and paired Watch app build. AppConduit/MobileInstallation reported the Watch app install succeeded. The Watch app launched successfully once after the update. A few minutes later, TestFlight queried installed beta Watch apps and found our Watch app still installed. Immediately after that, TestFlight/appconduitd removed two Watch-side provisioning profiles. The next watch app launch failed before our app process started with the same security/profile trust denial. The files where we saw this were: iPhone sysdiagnose: logs/AppConduit/AppConduit.log.0 logs/AppConduit/AppConduit.log.1 logs/MobileInstallation/mobile_installation.log.0 Watch sysdiagnose: logs/AppConduit/AppConduit.log.0 logs/MobileInstallation/mobile_installation.log.0 The most useful
Topic: App & System Services SubTopic: General Tags:
Replies
Boosts
Views
Activity
2w
MagSafe 4 LED physics
The MagSafe 3 cable is an amazing piece of engineering, showing charged as green and charging as amber. Please consider that carging, and full or reached charging limit, is green, but in case you are far away, you need an estimate of battery percentage. A software magsafe update, like macOS 26.5 was very noticeable for me, as i have the charging limit set on 80%. A new MagSafe 4 would be a simple MagSafe 3 update, adding a yellow colour. it should be simple, here is the code: // 1. CRITICAL SAFETY CUT-OFF // If the system detects a hardware/thermal failure, // it cuts power and pulses RED. if (criticalError) { setLED(PULSING_RED); return; } // 2. SLOW CHARGER DETECTION // Logic: Air < 30W OR Pro < 70W triggers Pulsing Yellow. if ((isAir() && wattage < 30) || (isPro() && wattage < 70)) { setLED(PULSING_YELLOW); return; } // 3. CAPACITY GRADIENT // Simple, clear visual feedback based on your percentages. if (soc < 50) { setLED(COLOR_AMBER); // 0-50% } else if (so
Topic: Design SubTopic: General
Replies
2
Boosts
0
Views
210
Activity
2w
AlarmKit Volume and Volume Buttons
Excited for AlarmKit! I have found two concerns that I cannot find answers for though. The volume of my alarms seems to be very quite relative to the full volume capability of the device. For example, if I turn the volume all the way up and play the audio file, the sound is very loud. However then, if I set the alarm using alarm kit with the same audio, the track played during the alerting phase is not that loud. I am afraid that it will not be loud enough in real life. Will there be future support to set the volume level of the alarm to maximum settings? When I press the volume buttons (with the app open) during an active alarm, the audio stops, but the alarm manager does not clear these events. The alarm manager does clear the alarm event if the alarm is stopped through a live activity.
Replies
5
Boosts
0
Views
656
Activity
2w
Reply to Could not launch app on watchOS downloaded from TestFlight
@ppwqgtl Small correction/update from our side: my earlier reply saying reboot fixed this was wrong. In the latest reproduction, a normal Apple Watch reboot did not recover the app. Deleting/reinstalling from TestFlight does recover it. Separately, one affected watch recovered after the battery drained completely, was left dead for hours, then charged/cold-booted. So this seems more persistent than a simple in-memory bad state. Our latest read is still that this is not an app crash. In the failed state, our app process is never created, there are no app startup logs, and launching with devicectl fails before our code runs with the same Security / RequestDenied shape. The strongest evidence we have now is around AppConduit / paired app state. In iPhone sysdiagnose we see AppConduit / ACXRemoteAppList reporting that the “App database is out of sync” around the relevant window. That lines up with the symptoms: the TestFlight watch app was installed, had launched successfully earlier on the same build/de
Topic: App & System Services SubTopic: General Tags:
Replies
Boosts
Views
Activity
2w