Search results for

“show when run”

115,113 results found

Post

Replies

Boosts

Views

Activity

Reply to XCTest Bundle cannot access local network.
Quick update. We've had substantial success applying the Audio-streaming concept to a relay runner app. The relay runner is installed and launched separately from the app-under-test, and acts as a relay station between the app-under-test and the external equipment. Initially we had some system-imposed limits to its run duration but that seems to be sorted out. The app-under-test connects to localhost, and the relay runner connects to the external IP address. It's been operating continuously for over a week now with good success.
2w
Reply to Does using HIDVirtualDevice rule out Mac App Store distribution?
With this entitlement present, macOS shows the system prompt requesting Accessibility permission. First, as a clarification, the prompt is tied to specific device types (keyboards/mice/touchpads), NOT just general HID device usage. Putting that in more concrete terms, it's required because your device is generating events that could be used to directly control the system, not simply because you're using the virtual HID API. Also, as a side note, you can use IOHIDCheckAccess and IOHIDRequestAccess to determine what your app’s current authorization status is. Having said that, please file a bug on this and post the bug number back here. As background context, the Accessibility permission is the general purpose permission for apps that are manipulating the system-wide input stream. I think using it for virtual HID is something we might want to reconsider, as it's giving you significantly more capability than you need/want, since it's allowing you to actively monitor/manipulate the system-wide event stre
Topic: App & System Services SubTopic: Drivers Tags:
2w
Appstore Connect Not Affecting Organizational Status — Senior Advisor Escalation Gone Silent — Case #102854501693
My support case has stalled despite being escalated to a Senior Advisor over a week ago with no follow-up or resolution. My application is being rejected from the App Store due to what appears to be a synchronization issue between apple.developer.com and App Store Connect. Full Timeline March 24, 2026 — My account migration from Individual to Organization was completed and approved by Apple. March 27, 2026 — My app (Version 1.0, Submission ID: 72b19231-8010-4844-b873-f2853d02092e) was rejected under Guideline 3.1.5 on an iPad Air 11-inch (M3). The rejection stated my app was submitted under an Individual account, which is not permitted for fintech applications. March 28, 2026 — I submitted a support request explaining the situation. April 6th, 2026 — I received a response from Developer Support, who acknowledged the issue and escalated it to a Senior Advisor. April 7, 2026 — I followed up via email as no Senior Advisor had contacted me. Today, April 13, 2026 — Still no contact from the Senior Advisor. App Sto
0
0
43
2w
Reply to CallKit automatically shows a system top toast after iOS 26, how to dismiss it?
I've noticed this same thing. My app is a video/audio calling app, so it shows the video streams and call controls in the app when a user has the app foregrounded. The system buttons are duplicates of this functionality when my app is foregrounded, plus they are dismissible, so I can't rely on their presence when my app is handling a call. Yes, that's the current UI behavior on devices with a dynamic island. If you'd like the system to behave differently, please file a bug that describes the specific issues this causes in your app and the behavior you'd like to see instead. __ Kevin Elliott DTS Engineer, CoreOS/Hardware
Topic: UI Frameworks SubTopic: UIKit Tags:
2w
autologin required inconsistent for virtualization
Hi, I have two issues going on: Creation of macOS VMs requires autologin is enabled: Mon Apr 13 11:27:18 20 anka.log (ankahv) 511: pid 511: installing /Users/veertu/Library/Application Support/Veertu/Anka/img_lib/UniversalMac_15.6.1_24G90_Restore.ipsw... Mon Apr 13 11:27:20 40 anka.log (install) 511: (null): installation failed: Error Domain=VZErrorDomain Code=10007 The virtual machine failed to start. UserInfo={NSLocalizedFailure=An error occurred during installation., NSLocalizedFailureReason=The virtual machine failed to start., NSUnderlyingError=0xca2c0ced0 {Error Domain=VZErrorDomain Code=-9 The virtual machine encountered a security error. UserInfo={NSLocalizedFailure=Unable to access security information., NSLocalizedFailureReason=The virtual machine encountered a security error., NSUnderlyingError=0xca3029320 {Error Domain=NSPOSIXErrorDomain Code=22 Invalid argument UserInfo={NSLocalizedFailureReason=Failed to get current host key., NSUnderlyingError=0xca30292f0 {Error Domain=NSPOSIXErrorDomain Code=2
12
0
249
2w
Reply to Where to see logs from my application
Thanks for the post, the logs with print will go to your Xcode console while you are debugging. All those are meant to find the issue before releasing the app. After release you cannot retrieve logs written via print or debugPrint from a distributed app after the fact for privacy. In Swift, print and debugPrint output directly to standard output (stdout). While this shows up in Xcode when the debugger is attached. Since you mentioned the app failed with a traceback, the operating system likely generated a Crash Report. You can ask the user to retrieve this specific crash log. If you want to be able to retrieve logs from users in the future, I would switch to Unified Logging System or a file-based logger and you can ask trusted users to provide you with the sysdiagnose that will contain those logs as Logger API writes to the system's unified logging facility, which persisted to disk and can be retrieved with user’s permission. Hope this helps. Inviting other developers for their ideas an suggestions.
Topic: App & System Services SubTopic: General Tags:
2w
macOS DNS Proxy system extension makes device stop processing MDM commands until reboot
Hi, I see an interaction issue between a DNS Proxy system extension and MDM on macOS: after some time the device stops processing MDM commands until reboot, while DNS filtering continues to work. Environment: macOS: 15.x / 26.x (reproduced on multiple minor versions) App: /Applications/MyMacProxy.app System extension: NEDNSProxyProvider as system extension Bundle id: com.company.agent.MyMacProxy.dnsProxy Deployment: MDM (SimpleMDM) DNS proxy config via com.apple.dnsProxy.managed Devices: supervised Macs Steps to reproduce: Enrol Mac into MDM. Install MyMacProxy app + DNS proxy system extension via pkg and apply com.apple.dnsProxy.managed profile. DNS proxy starts, DNS is filtered correctly, user network works normally. After some hours, try to manage the device from MDM: push a new configuration profile, remove an existing profile, or install / remove an app. 5.MDM server shows commands as pending / not completed. On the Mac, DNS is still filtered via our DNS proxy, and general network access (Safari
1
0
113
2w
Apple developer PAID but NOT ACTIVE yet
Hi, I purchased the Apple Developer subscription yesterday and the payment has already been successfully processed. However, my account is still not showing as active. Given that the payment has been completed, I would expect the activation to be reflected by now. This delay is impacting my ability to proceed with development and deployment, so I need clarification on what is causing the issue. Please review my account status as soon as possible and let me know: • If there is any pending verification or required action on my end • The reason for the delay in activation • The expected timeframe for the subscription to become active I would appreciate a prompt resolution to this matter. Thank you.
3
0
119
2w
Port forwarding with VZVmnetNetworkDeviceAttachment
I have the following code for port forwarding in mac os virtualization var ipAddr = in_addr() // 1. Convert String to in_addr inet_pton(AF_INET, guestIP, &ipAddr) let status = vmnet_network_configuration_add_port_forwarding_rule( config, UInt8(IPPROTO_TCP), // TCP protocol sa_family_t(AF_INET), // address family guestPort, // internal port (guest) externalPort, // external port (host) &ipAddr // internal address (guest IP) ) if status == .VMNET_SUCCESS { print(✅ Port Forwarding set: Mac:(externalPort) -> VM((guestIP)):(guestPort)) } else { print(❌ Port Forwarding failed for (guestIP): (status.rawValue)) } It is returning success but when i test it it does not work. Is there anything i am doing wrong? Please help me also in fixing this problem. Note: The app runs in sandbox i tried without sandboxing and it does not work either. Please refer to this link https://developer.apple.com/forums/thread/822025?login=true&page=1#884236022 how i am creating the VZVmnetNetworkDeviceAttachment
9
0
192
2w
Developer ID Installer cert not usable for pkg signing (no Code Signing / 0 identities)
Hello! We built a macOS .pkg using pkgbuild (contains a DMG + postinstall bash script). The pkg works locally on the build machine but fails on other devices manually / via MDM unless signed. We tried signing with a Developer ID Installer certificate, but: security find-identity -p codesigning -v → 0 valid identities security find-identity -v → shows the cert Private key is present in Keychain OpenSSL check shows: X509v3 Extended Key Usage: Critical (Expected one might be: Code Signing) We recreated CSR + cert multiple times (G2 Sub-CA), ensured Login keychain, unlocked keychain, etc., but same result. Question: Why is the Developer ID Installer cert missing Code Signing usage and not recognized for signing? Is there any account restriction or step we might be missing? Any recommendations on resolving this issue. Thanks!
1
0
367
2w
Reply to DHCP broken when device wakeup
[quote='884179022, Richie_Wu, /thread/820894?answerId=884179022#884179022, /profile/Richie_Wu'] We saw this issue more with Content Filter and Transparent proxy network extension running on the device. [/quote] OK. But that doesn’t actually answer my question: Is any of your code involved here? That is, are you the developer of these content filter and transparent proxy providers? Or are you trying to use providers created by a different developer? Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
2w
Reply to XCTest Bundle cannot access local network.
Quick update. We've had substantial success applying the Audio-streaming concept to a relay runner app. The relay runner is installed and launched separately from the app-under-test, and acts as a relay station between the app-under-test and the external equipment. Initially we had some system-imposed limits to its run duration but that seems to be sorted out. The app-under-test connects to localhost, and the relay runner connects to the external IP address. It's been operating continuously for over a week now with good success.
Replies
Boosts
Views
Activity
2w
Reply to DHCP broken when device wakeup
Yes, our app was built on top of transparent proxy provider, we bypass DHCP from provider to make sure it communicates directly with its ultimate destination. However issue still been reported from customers when Transparent proxy extension running.
Replies
Boosts
Views
Activity
2w
Reply to Does using HIDVirtualDevice rule out Mac App Store distribution?
With this entitlement present, macOS shows the system prompt requesting Accessibility permission. First, as a clarification, the prompt is tied to specific device types (keyboards/mice/touchpads), NOT just general HID device usage. Putting that in more concrete terms, it's required because your device is generating events that could be used to directly control the system, not simply because you're using the virtual HID API. Also, as a side note, you can use IOHIDCheckAccess and IOHIDRequestAccess to determine what your app’s current authorization status is. Having said that, please file a bug on this and post the bug number back here. As background context, the Accessibility permission is the general purpose permission for apps that are manipulating the system-wide input stream. I think using it for virtual HID is something we might want to reconsider, as it's giving you significantly more capability than you need/want, since it's allowing you to actively monitor/manipulate the system-wide event stre
Topic: App & System Services SubTopic: Drivers Tags:
Replies
Boosts
Views
Activity
2w
Appstore Connect Not Affecting Organizational Status — Senior Advisor Escalation Gone Silent — Case #102854501693
My support case has stalled despite being escalated to a Senior Advisor over a week ago with no follow-up or resolution. My application is being rejected from the App Store due to what appears to be a synchronization issue between apple.developer.com and App Store Connect. Full Timeline March 24, 2026 — My account migration from Individual to Organization was completed and approved by Apple. March 27, 2026 — My app (Version 1.0, Submission ID: 72b19231-8010-4844-b873-f2853d02092e) was rejected under Guideline 3.1.5 on an iPad Air 11-inch (M3). The rejection stated my app was submitted under an Individual account, which is not permitted for fintech applications. March 28, 2026 — I submitted a support request explaining the situation. April 6th, 2026 — I received a response from Developer Support, who acknowledged the issue and escalated it to a Senior Advisor. April 7, 2026 — I followed up via email as no Senior Advisor had contacted me. Today, April 13, 2026 — Still no contact from the Senior Advisor. App Sto
Replies
0
Boosts
0
Views
43
Activity
2w
Reply to CallKit automatically shows a system top toast after iOS 26, how to dismiss it?
I've noticed this same thing. My app is a video/audio calling app, so it shows the video streams and call controls in the app when a user has the app foregrounded. The system buttons are duplicates of this functionality when my app is foregrounded, plus they are dismissible, so I can't rely on their presence when my app is handling a call. Yes, that's the current UI behavior on devices with a dynamic island. If you'd like the system to behave differently, please file a bug that describes the specific issues this causes in your app and the behavior you'd like to see instead. __ Kevin Elliott DTS Engineer, CoreOS/Hardware
Topic: UI Frameworks SubTopic: UIKit Tags:
Replies
Boosts
Views
Activity
2w
autologin required inconsistent for virtualization
Hi, I have two issues going on: Creation of macOS VMs requires autologin is enabled: Mon Apr 13 11:27:18 20 anka.log (ankahv) 511: pid 511: installing /Users/veertu/Library/Application Support/Veertu/Anka/img_lib/UniversalMac_15.6.1_24G90_Restore.ipsw... Mon Apr 13 11:27:20 40 anka.log (install) 511: (null): installation failed: Error Domain=VZErrorDomain Code=10007 The virtual machine failed to start. UserInfo={NSLocalizedFailure=An error occurred during installation., NSLocalizedFailureReason=The virtual machine failed to start., NSUnderlyingError=0xca2c0ced0 {Error Domain=VZErrorDomain Code=-9 The virtual machine encountered a security error. UserInfo={NSLocalizedFailure=Unable to access security information., NSLocalizedFailureReason=The virtual machine encountered a security error., NSUnderlyingError=0xca3029320 {Error Domain=NSPOSIXErrorDomain Code=22 Invalid argument UserInfo={NSLocalizedFailureReason=Failed to get current host key., NSUnderlyingError=0xca30292f0 {Error Domain=NSPOSIXErrorDomain Code=2
Replies
12
Boosts
0
Views
249
Activity
2w
Reply to Where to see logs from my application
Thanks for the post, the logs with print will go to your Xcode console while you are debugging. All those are meant to find the issue before releasing the app. After release you cannot retrieve logs written via print or debugPrint from a distributed app after the fact for privacy. In Swift, print and debugPrint output directly to standard output (stdout). While this shows up in Xcode when the debugger is attached. Since you mentioned the app failed with a traceback, the operating system likely generated a Crash Report. You can ask the user to retrieve this specific crash log. If you want to be able to retrieve logs from users in the future, I would switch to Unified Logging System or a file-based logger and you can ask trusted users to provide you with the sysdiagnose that will contain those logs as Logger API writes to the system's unified logging facility, which persisted to disk and can be retrieved with user’s permission. Hope this helps. Inviting other developers for their ideas an suggestions.
Topic: App & System Services SubTopic: General Tags:
Replies
Boosts
Views
Activity
2w
Reply to Game Center Access Point does not appear on iOS 26 (Simulator)
Seeing the same thing in XCode 26.4 when trying to view leaderboard Could not create endpoint for service name: com.apple.GameOverlayUI.dashboard-service Failed to create GameOverlayUI Dashboard Remote Proxy This is happening for iPad or iPhone simulation running 26.4. Same code worked fine simulating under XCode 16
Topic: Graphics & Games SubTopic: GameKit Tags:
Replies
Boosts
Views
Activity
2w
Reply to Individual enrollment pending since April 6 — payment processed, no activation, no support response
I am experiencing the same issue, which is very frustrating. The payment has already been deducted from my bank account, but the purchase is not showing in my Apple account and my developer membership is still not activated. Order number: W1544580196 Case number: 102867468074
Replies
Boosts
Views
Activity
2w
Reply to Apple Developer Program Enrollment Stuck: "Your enrollment is being processed" for Weeks – Widespread Issue in 2026
I am experiencing the same issue, which is very frustrating. The payment has already been deducted from my bank account, but the purchase is not showing in my Apple account and my developer membership is still not activated. Order number: W1544580196 Case number: 102867468074
Replies
Boosts
Views
Activity
2w
macOS DNS Proxy system extension makes device stop processing MDM commands until reboot
Hi, I see an interaction issue between a DNS Proxy system extension and MDM on macOS: after some time the device stops processing MDM commands until reboot, while DNS filtering continues to work. Environment: macOS: 15.x / 26.x (reproduced on multiple minor versions) App: /Applications/MyMacProxy.app System extension: NEDNSProxyProvider as system extension Bundle id: com.company.agent.MyMacProxy.dnsProxy Deployment: MDM (SimpleMDM) DNS proxy config via com.apple.dnsProxy.managed Devices: supervised Macs Steps to reproduce: Enrol Mac into MDM. Install MyMacProxy app + DNS proxy system extension via pkg and apply com.apple.dnsProxy.managed profile. DNS proxy starts, DNS is filtered correctly, user network works normally. After some hours, try to manage the device from MDM: push a new configuration profile, remove an existing profile, or install / remove an app. 5.MDM server shows commands as pending / not completed. On the Mac, DNS is still filtered via our DNS proxy, and general network access (Safari
Replies
1
Boosts
0
Views
113
Activity
2w
Apple developer PAID but NOT ACTIVE yet
Hi, I purchased the Apple Developer subscription yesterday and the payment has already been successfully processed. However, my account is still not showing as active. Given that the payment has been completed, I would expect the activation to be reflected by now. This delay is impacting my ability to proceed with development and deployment, so I need clarification on what is causing the issue. Please review my account status as soon as possible and let me know: • If there is any pending verification or required action on my end • The reason for the delay in activation • The expected timeframe for the subscription to become active I would appreciate a prompt resolution to this matter. Thank you.
Replies
3
Boosts
0
Views
119
Activity
2w
Port forwarding with VZVmnetNetworkDeviceAttachment
I have the following code for port forwarding in mac os virtualization var ipAddr = in_addr() // 1. Convert String to in_addr inet_pton(AF_INET, guestIP, &ipAddr) let status = vmnet_network_configuration_add_port_forwarding_rule( config, UInt8(IPPROTO_TCP), // TCP protocol sa_family_t(AF_INET), // address family guestPort, // internal port (guest) externalPort, // external port (host) &ipAddr // internal address (guest IP) ) if status == .VMNET_SUCCESS { print(✅ Port Forwarding set: Mac:(externalPort) -> VM((guestIP)):(guestPort)) } else { print(❌ Port Forwarding failed for (guestIP): (status.rawValue)) } It is returning success but when i test it it does not work. Is there anything i am doing wrong? Please help me also in fixing this problem. Note: The app runs in sandbox i tried without sandboxing and it does not work either. Please refer to this link https://developer.apple.com/forums/thread/822025?login=true&page=1#884236022 how i am creating the VZVmnetNetworkDeviceAttachment
Replies
9
Boosts
0
Views
192
Activity
2w
Developer ID Installer cert not usable for pkg signing (no Code Signing / 0 identities)
Hello! We built a macOS .pkg using pkgbuild (contains a DMG + postinstall bash script). The pkg works locally on the build machine but fails on other devices manually / via MDM unless signed. We tried signing with a Developer ID Installer certificate, but: security find-identity -p codesigning -v → 0 valid identities security find-identity -v → shows the cert Private key is present in Keychain OpenSSL check shows: X509v3 Extended Key Usage: Critical (Expected one might be: Code Signing) We recreated CSR + cert multiple times (G2 Sub-CA), ensured Login keychain, unlocked keychain, etc., but same result. Question: Why is the Developer ID Installer cert missing Code Signing usage and not recognized for signing? Is there any account restriction or step we might be missing? Any recommendations on resolving this issue. Thanks!
Replies
1
Boosts
0
Views
367
Activity
2w
Reply to DHCP broken when device wakeup
[quote='884179022, Richie_Wu, /thread/820894?answerId=884179022#884179022, /profile/Richie_Wu'] We saw this issue more with Content Filter and Transparent proxy network extension running on the device. [/quote] OK. But that doesn’t actually answer my question: Is any of your code involved here? That is, are you the developer of these content filter and transparent proxy providers? Or are you trying to use providers created by a different developer? Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
Replies
Boosts
Views
Activity
2w