Search results for

“eskimo”

37,165 results found

Post

Replies

Boosts

Views

Activity

Reply to Notarization submissions stuck "In Progress" 24+ hours — first-time enrolment, signing verified clean
[quote='888287022, Poojan, /thread/826626?answerId=888287022#888287022, /profile/Poojan'] does that mean that my upload is being held in in-depth analysis? [/quote] It seems likely. Based on my experience helping folks here on the forums, this is how things usually pan out: You submit request N. It stays stuck in the In Progress state. You submit requests N + 1, N + 2, and so on. They all get stuck in the In Progress state. At some point in the future, the in-depth analysis of request N completes and request N completes. Shortly thereafter requests N + 1, N + 2, and so on also completely. Presumably this is the “learn how to recognise” effect I mentioned above. As to how long this is taking, 4 days (100 hours) is certainly longer than is typical but it’s not completely beyond the pale. If it’s still stuck after a week, reply back here and I’ll do some digging. Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
Topic: Code Signing SubTopic: Notarization Tags:
3w
Reply to MFMailComposeViewController in visionOS does not have a cancel button
[quote='888256022, chkpnt, /thread/748447?answerId=888256022#888256022, /profile/chkpnt'] Do you have now anything to share about this bug or its fix? [/quote] No. [quote='888256022, chkpnt, /thread/748447?answerId=888256022#888256022, /profile/chkpnt'] Unfortunately, it is still present in iPadOS 26.5. :-( [/quote] That’s my understanding as well )-: If you want to be notified if and when the bug is fixed, you should file your own bug and ask that it be marked as a duplicate of our internal bug (r. 172868867). See Bug Reporting: How and Why? for more about how that process works. Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
Topic: App & System Services SubTopic: General Tags:
3w
Reply to iOS UDP Multicast: Receiving works but sending silently fails
The link to the Multicast Networking Entitlement Request page in our docs is working for me. Are you the Account Holder for the team in question? If not, I recommend that you ask your Account Holder to do this. If they can’t get it to work, seek formal support via Apple > Developer > Contact Us > Development and Technical > Entitlements. Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
3w
Reply to Entitlement com.apple.vm.networking not found and could not be included in profile. This likely is not a valid entitlement and should be removed from your entitlements file
The VM Networking capability, which granted access to the com.apple.vm.networking entitlement, is managed. That is, you must apply to Apple for access to the capability. Apple has recently introduced a shiny new mechanism for requesting managed capabilities (see here). VM Networking should use that process but, sadly, it doesn’t [1]. In the meantime, you can apply for the VM Networking capability by opening a DTS code-level support request. When you submit the request, in the section where it asked who sent you to DTS, make sure to reference this forums thread. Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com [1] It’s on my to-do list. One day… one day…
Topic: App & System Services SubTopic: Core OS Tags:
3w
Reply to Timeline on C23 adoption in libSystem
Apple generally doesn’t talk about The Future™ [1]. My advice is that you file an enhancement request for the specific features you need. That way you’ll be notified when things change. Please post your bug number, just for the record. Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com [1] See tip 3 in Quinn’s Top Ten DevForums Tips.
Topic: Programming Languages SubTopic: General Tags:
3w
Reply to Explicit dynamic loading of a framework in macOS - recommended approach?
[quote='888157022, GangOrca, /thread/820251?answerId=888157022#888157022, /profile/GangOrca'] the path to the internal MachO binary is required [/quote] Right. I recommend that you pass an absolute path to dlopen, so you’ll need platform-specific code to generate that path. How you generate that path depends on how you package your code. In both cases you need to get your app’s framework directory. To do that: Get the app’s bundle bundle using Bundle.main. Then get the privateFrameworksURL property from that. From there, you have two choices: If you package the code as a dynamic library (.dylib) you can just append the library file name and away you go. If you package the code as a framework, you have to create a bundle from that framework, using the init(url:) initialiser, and then get the main executable URL from that using the executableURL property. For iOS you have to use the second option; we only support standalone dynamic libraries on macOS. If you can’t use Swift, or even Objective-C, you can do all
Topic: App & System Services SubTopic: Core OS Tags:
3w
Reply to The callback is not triggered when the app is launched from a terminated state via the notification action
[quote='887853022, Madhuri_Ramapure, /thread/826318?answerId=887853022#887853022, /profile/Madhuri_Ramapure'] When an app is forcefully terminated, all background network tasks are cancelled [/quote] Correct. It’d be more accurate to say “tasks in a URLSession background session”, but the gist is right. I discuss this in some detail in Testing Background Session Code. Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
3w
Reply to The network expansion process will become a zombie process and the network will be unusable.
@liyuwei, Do you still need help with this? I didn’t notice your earlier reply because you replied as a comment rather than as a reply. That makes it easy for me to miss. See Quinn’s Top Ten DevForums Tips for this and other titbits. Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
3w
Reply to Platform SSO registration dialogs remain after later success
Thanks. There’s good news and bad news regarding FB22598899: You’re not the only one noticing this. Your bug was marked as a dup of a bug that was filed internally. It’s not fixed in any shipping or seeded OS release. I recommend that you continue monitoring it’s state in Feedback Assistant. Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
Topic: Privacy & Security SubTopic: General Tags:
3w
Reply to codesign tool generates "timestamps differ by XXX seconds" error
[quote='887852022, jaikiran, /thread/826273?answerId=887852022#887852022, /profile/jaikiran'] Is there a tool that I could use to directly issue a similar request against that server and see what it returns? [/quote] Not as such. This service isn’t considered API, but some spelunking reveals details about the implementation, namely that it’s HTTP: % nc timestamp.apple.com 80 GET / HTTP/1.1 Connection: close Host: timestamp.apple.com HTTP/1.1 302 Moved Temporarily … As to the request method, path, and payload, I’m gonna give you the opportunity to work those out (-: If you get stuck, you can pull the thread starting from here in Darwin. [quote='887852022, jaikiran, /thread/826273?answerId=887852022#887852022, /profile/jaikiran'] there's no option/flag in codesign which would allow us to print verbose logs showing it communicating with the timestamp authority server. [/quote] Agreed. [quote='887852022, jaikiran, /thread/826273?answerId=887852022#887852022, /profile/jaikiran'] what API the codesign tool uses in
Topic: Code Signing SubTopic: General Tags:
3w
Reply to Notarization submissions stuck "In Progress" 24+ hours — first-time enrolment, signing verified clean
[quote='888287022, Poojan, /thread/826626?answerId=888287022#888287022, /profile/Poojan'] does that mean that my upload is being held in in-depth analysis? [/quote] It seems likely. Based on my experience helping folks here on the forums, this is how things usually pan out: You submit request N. It stays stuck in the In Progress state. You submit requests N + 1, N + 2, and so on. They all get stuck in the In Progress state. At some point in the future, the in-depth analysis of request N completes and request N completes. Shortly thereafter requests N + 1, N + 2, and so on also completely. Presumably this is the “learn how to recognise” effect I mentioned above. As to how long this is taking, 4 days (100 hours) is certainly longer than is typical but it’s not completely beyond the pale. If it’s still stuck after a week, reply back here and I’ll do some digging. Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
Topic: Code Signing SubTopic: Notarization Tags:
Replies
Boosts
Views
Activity
3w
Reply to MFMailComposeViewController in visionOS does not have a cancel button
[quote='888256022, chkpnt, /thread/748447?answerId=888256022#888256022, /profile/chkpnt'] Do you have now anything to share about this bug or its fix? [/quote] No. [quote='888256022, chkpnt, /thread/748447?answerId=888256022#888256022, /profile/chkpnt'] Unfortunately, it is still present in iPadOS 26.5. :-( [/quote] That’s my understanding as well )-: If you want to be notified if and when the bug is fixed, you should file your own bug and ask that it be marked as a duplicate of our internal bug (r. 172868867). See Bug Reporting: How and Why? for more about how that process works. Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
Topic: App & System Services SubTopic: General Tags:
Replies
Boosts
Views
Activity
3w
Reply to iOS UDP Multicast: Receiving works but sending silently fails
The link to the Multicast Networking Entitlement Request page in our docs is working for me. Are you the Account Holder for the team in question? If not, I recommend that you ask your Account Holder to do this. If they can’t get it to work, seek formal support via Apple > Developer > Contact Us > Development and Technical > Entitlements. Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
Replies
Boosts
Views
Activity
3w
Reply to Entitlement com.apple.vm.networking not found and could not be included in profile. This likely is not a valid entitlement and should be removed from your entitlements file
The VM Networking capability, which granted access to the com.apple.vm.networking entitlement, is managed. That is, you must apply to Apple for access to the capability. Apple has recently introduced a shiny new mechanism for requesting managed capabilities (see here). VM Networking should use that process but, sadly, it doesn’t [1]. In the meantime, you can apply for the VM Networking capability by opening a DTS code-level support request. When you submit the request, in the section where it asked who sent you to DTS, make sure to reference this forums thread. Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com [1] It’s on my to-do list. One day… one day…
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
3w
Reply to Jetsam events on spotlight searches
Is this related to an app that you’ve created? Or a general issue that affects a wide range of apps? Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
3w
Reply to Timeline on C23 adoption in libSystem
Apple generally doesn’t talk about The Future™ [1]. My advice is that you file an enhancement request for the specific features you need. That way you’ll be notified when things change. Please post your bug number, just for the record. Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com [1] See tip 3 in Quinn’s Top Ten DevForums Tips.
Topic: Programming Languages SubTopic: General Tags:
Replies
Boosts
Views
Activity
3w
Reply to Follow-up Regarding Family Controls Distribution Entitlement Request
Let’s focus this discussion on your other thread. Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
Topic: Code Signing SubTopic: Entitlements Tags:
Replies
Boosts
Views
Activity
3w
Reply to Follow-up Regarding Family Controls Distribution Entitlement Request
Let’s focus this discussion on your other thread. Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
Topic: Code Signing SubTopic: Entitlements Tags:
Replies
Boosts
Views
Activity
3w
Reply to Explicit dynamic loading of a framework in macOS - recommended approach?
[quote='888157022, GangOrca, /thread/820251?answerId=888157022#888157022, /profile/GangOrca'] the path to the internal MachO binary is required [/quote] Right. I recommend that you pass an absolute path to dlopen, so you’ll need platform-specific code to generate that path. How you generate that path depends on how you package your code. In both cases you need to get your app’s framework directory. To do that: Get the app’s bundle bundle using Bundle.main. Then get the privateFrameworksURL property from that. From there, you have two choices: If you package the code as a dynamic library (.dylib) you can just append the library file name and away you go. If you package the code as a framework, you have to create a bundle from that framework, using the init(url:) initialiser, and then get the main executable URL from that using the executableURL property. For iOS you have to use the second option; we only support standalone dynamic libraries on macOS. If you can’t use Swift, or even Objective-C, you can do all
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
3w
Reply to The callback is not triggered when the app is launched from a terminated state via the notification action
[quote='887853022, Madhuri_Ramapure, /thread/826318?answerId=887853022#887853022, /profile/Madhuri_Ramapure'] When an app is forcefully terminated, all background network tasks are cancelled [/quote] Correct. It’d be more accurate to say “tasks in a URLSession background session”, but the gist is right. I discuss this in some detail in Testing Background Session Code. Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
Replies
Boosts
Views
Activity
3w
Reply to The network expansion process will become a zombie process and the network will be unusable.
@liyuwei, Do you still need help with this? I didn’t notice your earlier reply because you replied as a comment rather than as a reply. That makes it easy for me to miss. See Quinn’s Top Ten DevForums Tips for this and other titbits. Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
Replies
Boosts
Views
Activity
3w
Reply to Platform SSO registration dialogs remain after later success
Thanks. There’s good news and bad news regarding FB22598899: You’re not the only one noticing this. Your bug was marked as a dup of a bug that was filed internally. It’s not fixed in any shipping or seeded OS release. I recommend that you continue monitoring it’s state in Feedback Assistant. Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
Topic: Privacy & Security SubTopic: General Tags:
Replies
Boosts
Views
Activity
3w
Reply to VZVirtualMachineView and rightMouseDown
Would you care to share the explanation? I’m sure other developers would be interested in your experience. Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
3w
Reply to codesign tool generates "timestamps differ by XXX seconds" error
[quote='887852022, jaikiran, /thread/826273?answerId=887852022#887852022, /profile/jaikiran'] Is there a tool that I could use to directly issue a similar request against that server and see what it returns? [/quote] Not as such. This service isn’t considered API, but some spelunking reveals details about the implementation, namely that it’s HTTP: % nc timestamp.apple.com 80 GET / HTTP/1.1 Connection: close Host: timestamp.apple.com HTTP/1.1 302 Moved Temporarily … As to the request method, path, and payload, I’m gonna give you the opportunity to work those out (-: If you get stuck, you can pull the thread starting from here in Darwin. [quote='887852022, jaikiran, /thread/826273?answerId=887852022#887852022, /profile/jaikiran'] there's no option/flag in codesign which would allow us to print verbose logs showing it communicating with the timestamp authority server. [/quote] Agreed. [quote='887852022, jaikiran, /thread/826273?answerId=887852022#887852022, /profile/jaikiran'] what API the codesign tool uses in
Topic: Code Signing SubTopic: General Tags:
Replies
Boosts
Views
Activity
3w
Reply to 2+ months blocked on error 7000. Apple's "correct escalation path" is broken.
To reiterate, there isn’t anything we can do for you here on the forums. As the error message says, you need to contact Apple Developer Program Support. Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
Topic: Code Signing SubTopic: Notarization Tags:
Replies
Boosts
Views
Activity
3w