Search results for

“eskimo”

37,165 results found

Post

Replies

Boosts

Views

Activity

Reply to Where to see logs from my application
What Albert said plus… At a technical level: Swift’s debugPrint(…) and print(…) default to printing to stdout. When you launch an app as a user would — from the Home screen on iOS, from Finder on the Mac, and so on — the system connects stdin, stdout, and stderr to /dev/null. For a lot more links and information about the system log, see Your Friend the System Log. Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
Topic: App & System Services SubTopic: General Tags:
Apr ’26
Reply to Developer ID Installer cert not usable for pkg signing (no Code Signing / 0 identities)
[quote='822661021, Vemallampati, /thread/822661, /profile/Vemallampati'] Why is the Developer ID Installer cert missing Code Signing usage … ? [/quote] Because it’s not using for signing code. Apple issues two types of Developer ID certificates: Developer ID Application, for signing code and (weirdly) disk images Developer ID Installer, for signing installer packages If you run security find-identity and apply the code signing filter, you’ll only see the first type. There’s a bunch more advice on this topic in Packaging Mac software for distribution. Also, whenever I talk about Developer ID signing identities I like to stress that they are precious. See The Care and Feeding of Developer ID for more about that. Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
Apr ’26
Reply to `sysextd` rejects new `NEFilterDataProvider` activation with "no policy" on macOS 26 — despite valid Developer ID + notarization
My specific advice here: For day-to-day debugging, use the approach described in Debugging a Network Extension Provider. To verify your Developer ID signed version, use the approach described in Testing a Notarised Product. I use both of these approaches quite regularly and I’m not aware of any systematic problem with them. If you can reproduce this problem with either approach, I’d be happy to dig into that. ps Regarding this: [quote='884135022, avdigitalsolutions, /thread/817101?answerId=884135022#884135022, /profile/avdigitalsolutions'] I migrated to the system extension model [/quote] I have advice for that in Network Extension Provider Packaging. Reading through your post I think you’ve done the most important steps, but it’d be worth you reading through it, just to be sure. Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
Apr ’26
Reply to WKWebView customUserAgent replaces system User-Agent with NetworkingExtension identifier on iOS 26.4
[quote='883986022, Mapple, /thread/822080?answerId=883986022#883986022, /profile/Mapple'] I found the problem. [/quote] Ah, interesting, thanks for the extra info. [quote='883986022, Mapple, /thread/822080?answerId=883986022#883986022, /profile/Mapple'] Can this issue be fixed? [/quote] It’s hard for me to say. My advice is that you file a bug with the details. That’ll get it in front of the relevant folks. 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
Topic: Safari & Web SubTopic: General Tags:
Apr ’26
Reply to Provisioning profiles marked "Ineligible" for Contactless Pass Provisioning even though entitlement is present in profile
[quote='884188022, kingfu, /thread/821961?answerId=884188022#884188022, /profile/kingfu'] is there any new progress now? [/quote] No. I’m talking with the right folks about this, but I don’t yet have a path forward that I can recommend. Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
Apr ’26
Reply to Didn't receive any notification from coreWLAN for linkQualityDidChange
[quote='883982022, balajie, /thread/821842?answerId=883982022#883982022, /profile/balajie'] the bug ID is FB22464790. [/quote] Thanks. I’m gonna use that bug to dig into this a little. I’ll post an update here when I learn more. Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
Apr ’26
Reply to iOS 26.4 asks for Face ID instead of Screen Time passcode when disabling Screen Time access for an app
infovine, It’s better to reply as a reply, rather than in the comments; see Quinn’s Top Ten DevForums Tips for this and other titbits. I already submitted a report in Feedback Assistant. Cool. What was the bug number? Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
Topic: App & System Services SubTopic: General Tags:
Apr ’26
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
Apr ’26
Reply to Notarization stuck in “In Progress” for all submissions since April 4th
antho2305, I pinged the notary team about this last week and got some preliminary info. It’s definitely something specific to your situation, not a general issue. I’m working on getting something more concrete to share. Dbuckley470, I’m presuming that you’re not working with antho2305, and thus you’re talking about a separate issue. If so, it’s hard to say what’s going without more info. I recommend that you start a new thread with the details. Use the same subtopic as this thread; that way I’ll be sure to see it go by. Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
Apr ’26
Reply to A new coder wanting to learn
[quote='822456021, ParinK124, /thread/822456, /profile/ParinK124'] I am loving it! [/quote] Cool. [quote='822456021, ParinK124, /thread/822456, /profile/ParinK124'] Is there any other apps that help me to learn coding? [/quote] It kinda depends on your direction: Are you looking to learn Swift programming in general? Or looking to learn Swift programming so that you create iOS apps? Or something else? Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
Apr ’26
Reply to Programmatic IP Discovery for VZVirtualMachine in an App Store Sandbox
[quote='884173022, rbmanian75, /thread/822025?answerId=884173022#884173022, /profile/rbmanian75'] it seem to be that VZVmnetNetworkDeviceAttachment is only avaialble for mac os 26 [/quote] Right. I don’t see a good option for earlier systems. Internally we bounced around the idea of looking for a record of the VM’s MAC address in the ARP cache but, honestly, I’m not a fan of that idea. It’s easy to imagine various ways it might go wrong. [quote='884173022, rbmanian75, /thread/822025?answerId=884173022#884173022, /profile/rbmanian75'] i would like to do the port forwarding. [/quote] It looks like you’re making progress on that. If you get completely stuck, I recommend that you start a new thread so that we can keep this thread focused on the IP address issue. Use the same subtopic and tags as this thread; that way I’ll be sure to see it go by. Coming back to your IP address issue, it seems like you’re trying to share a vmnet interface between all your VMs. I think that’ll work in general, but it presents a pro
Topic: App & System Services SubTopic: Core OS Tags:
Apr ’26
Reply to reject: source=Unnotarized Developer ID
spctl is not a great way to check whether a program will run. Rather, I recommend that you do an end-to-end test, as explained in Testing a Notarised Product. Oh, and two minor things. First, when you run an assessment with spctl you have to pass in the correct assessment type via the -t option. install is not correct for command-line tools. You want to use exec. Second, I noticed you’re signing code with sudo. That’s something we specifically recommend against. See Creating distribution-signed code for macOS. In many cases it’ll work, but it also send you off into the errSecInternalComponent weeds. Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
Apr ’26
Reply to Where to see logs from my application
What Albert said plus… At a technical level: Swift’s debugPrint(…) and print(…) default to printing to stdout. When you launch an app as a user would — from the Home screen on iOS, from Finder on the Mac, and so on — the system connects stdin, stdout, and stderr to /dev/null. For a lot more links and information about the system log, see Your Friend the System Log. 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
Apr ’26
Reply to Developer ID Installer cert not usable for pkg signing (no Code Signing / 0 identities)
[quote='822661021, Vemallampati, /thread/822661, /profile/Vemallampati'] Why is the Developer ID Installer cert missing Code Signing usage … ? [/quote] Because it’s not using for signing code. Apple issues two types of Developer ID certificates: Developer ID Application, for signing code and (weirdly) disk images Developer ID Installer, for signing installer packages If you run security find-identity and apply the code signing filter, you’ll only see the first type. There’s a bunch more advice on this topic in Packaging Mac software for distribution. Also, whenever I talk about Developer ID signing identities I like to stress that they are precious. See The Care and Feeding of Developer ID for more about that. Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
Replies
Boosts
Views
Activity
Apr ’26
Reply to LLDB RPC server crashes when running top-level async code in Playground files
I think this falls under the category of Just A Bug™. Thanks for filing FB22416465. Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
Replies
Boosts
Views
Activity
Apr ’26
Reply to tvOS: Background audio + local caching works on Simulator but stops on real Apple TV device
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: Media Technologies SubTopic: Audio Tags:
Replies
Boosts
Views
Activity
Apr ’26
Reply to `sysextd` rejects new `NEFilterDataProvider` activation with "no policy" on macOS 26 — despite valid Developer ID + notarization
My specific advice here: For day-to-day debugging, use the approach described in Debugging a Network Extension Provider. To verify your Developer ID signed version, use the approach described in Testing a Notarised Product. I use both of these approaches quite regularly and I’m not aware of any systematic problem with them. If you can reproduce this problem with either approach, I’d be happy to dig into that. ps Regarding this: [quote='884135022, avdigitalsolutions, /thread/817101?answerId=884135022#884135022, /profile/avdigitalsolutions'] I migrated to the system extension model [/quote] I have advice for that in Network Extension Provider Packaging. Reading through your post I think you’ve done the most important steps, but it’d be worth you reading through it, just to be sure. Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
Replies
Boosts
Views
Activity
Apr ’26
Reply to WKWebView customUserAgent replaces system User-Agent with NetworkingExtension identifier on iOS 26.4
[quote='883986022, Mapple, /thread/822080?answerId=883986022#883986022, /profile/Mapple'] I found the problem. [/quote] Ah, interesting, thanks for the extra info. [quote='883986022, Mapple, /thread/822080?answerId=883986022#883986022, /profile/Mapple'] Can this issue be fixed? [/quote] It’s hard for me to say. My advice is that you file a bug with the details. That’ll get it in front of the relevant folks. 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
Topic: Safari & Web SubTopic: General Tags:
Replies
Boosts
Views
Activity
Apr ’26
Reply to Provisioning profiles marked "Ineligible" for Contactless Pass Provisioning even though entitlement is present in profile
[quote='884188022, kingfu, /thread/821961?answerId=884188022#884188022, /profile/kingfu'] is there any new progress now? [/quote] No. I’m talking with the right folks about this, but I don’t yet have a path forward that I can recommend. Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
Replies
Boosts
Views
Activity
Apr ’26
Reply to Didn't receive any notification from coreWLAN for linkQualityDidChange
[quote='883982022, balajie, /thread/821842?answerId=883982022#883982022, /profile/balajie'] the bug ID is FB22464790. [/quote] Thanks. I’m gonna use that bug to dig into this a little. I’ll post an update here when I learn more. Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
Replies
Boosts
Views
Activity
Apr ’26
Reply to iOS 26.4 asks for Face ID instead of Screen Time passcode when disabling Screen Time access for an app
infovine, It’s better to reply as a reply, rather than in the comments; see Quinn’s Top Ten DevForums Tips for this and other titbits. I already submitted a report in Feedback Assistant. Cool. What was the bug number? 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
Apr ’26
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
Apr ’26
Reply to Notarization stuck in “In Progress” for all submissions since April 4th
antho2305, I pinged the notary team about this last week and got some preliminary info. It’s definitely something specific to your situation, not a general issue. I’m working on getting something more concrete to share. Dbuckley470, I’m presuming that you’re not working with antho2305, and thus you’re talking about a separate issue. If so, it’s hard to say what’s going without more info. I recommend that you start a new thread with the details. Use the same subtopic as this thread; that way I’ll be sure to see it go by. Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
Replies
Boosts
Views
Activity
Apr ’26
Reply to A new coder wanting to learn
[quote='822456021, ParinK124, /thread/822456, /profile/ParinK124'] I am loving it! [/quote] Cool. [quote='822456021, ParinK124, /thread/822456, /profile/ParinK124'] Is there any other apps that help me to learn coding? [/quote] It kinda depends on your direction: Are you looking to learn Swift programming in general? Or looking to learn Swift programming so that you create iOS apps? Or something else? Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
Replies
Boosts
Views
Activity
Apr ’26
Reply to Programmatic IP Discovery for VZVirtualMachine in an App Store Sandbox
[quote='884173022, rbmanian75, /thread/822025?answerId=884173022#884173022, /profile/rbmanian75'] it seem to be that VZVmnetNetworkDeviceAttachment is only avaialble for mac os 26 [/quote] Right. I don’t see a good option for earlier systems. Internally we bounced around the idea of looking for a record of the VM’s MAC address in the ARP cache but, honestly, I’m not a fan of that idea. It’s easy to imagine various ways it might go wrong. [quote='884173022, rbmanian75, /thread/822025?answerId=884173022#884173022, /profile/rbmanian75'] i would like to do the port forwarding. [/quote] It looks like you’re making progress on that. If you get completely stuck, I recommend that you start a new thread so that we can keep this thread focused on the IP address issue. Use the same subtopic and tags as this thread; that way I’ll be sure to see it go by. Coming back to your IP address issue, it seems like you’re trying to share a vmnet interface between all your VMs. I think that’ll work in general, but it presents a pro
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Apr ’26
Reply to reject: source=Unnotarized Developer ID
spctl is not a great way to check whether a program will run. Rather, I recommend that you do an end-to-end test, as explained in Testing a Notarised Product. Oh, and two minor things. First, when you run an assessment with spctl you have to pass in the correct assessment type via the -t option. install is not correct for command-line tools. You want to use exec. Second, I noticed you’re signing code with sudo. That’s something we specifically recommend against. See Creating distribution-signed code for macOS. In many cases it’ll work, but it also send you off into the errSecInternalComponent weeds. Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
Replies
Boosts
Views
Activity
Apr ’26
Reply to HomeKit support on MacOS
HomeKit is an outlier in that it’s supported on the Mac but only for Mac Catalyst apps. Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
Topic: App & System Services SubTopic: Hardware Tags:
Replies
Boosts
Views
Activity
Apr ’26