Search results for

“Apple Maps Guides”

155,875 results found

Post

Replies

Boosts

Views

Activity

Reply to AXSpeech Thread Crash SEGV_ACCERR
Those crash reports didn’t come through intact )-: To summarise the points I made earlier: To look into this in more detail I need a complete Apple crash report. Ideally a JSON crash report (.ips). Ideally one from an app with no third-party crash reporters [1]. See Posting a Crash Report for advice on how to post such a crash report. Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com [1] See Implementing Your Own Crash Reporter for an explanation as to why third-party crash reporters are a problem.
5d
Reply to Cellular not initializing on iPadOS 26.4 (resolved by network reset)
I am having the exact same issues with the same parameters. Ipad Air 9, eSIM 26.4 Update Managed by Apple Business manager and Intune Fix I found yesterday was wiping them using Intune, including wiping cellular service. They would then reactivate eSIM and Verizon service, then reload their profile. Finally wiped and confirmed this particular fleet working again yesterday afternoon, but this morning they have all but most lost service again. Fix was temporary. Edit: Network reset will get them working for about 10 minutes, but then the full bars drop to one bar, and the cellular is completely non-functional again.
Topic: App & System Services SubTopic: Core OS Tags:
5d
Reply to Cellular not initializing on iPadOS 26.4 (resolved by network reset)
You might have more luck asking this in over in the Apple Support Community, run by Apple Support, and specifically in the Business and Education topic area, where you’re more likely to find folks with relevant experience. DevForums is primarily focused on helping developers with APIs in Apple’s various platform SDKs, and that’s not a factor here. Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
Topic: App & System Services SubTopic: Core OS Tags:
5d
Reply to Control over "\(your_app) wants to open \(another_app)" Dialog
Sorry I didn’t respond earlier; I was hoping that someone else would wade in. Can you post a screenshot of the specific alert you’re referring to. [quote='811856021, aaronvalentino, /thread/811856, /profile/aaronvalentino'] My team needs to understand this behavior [/quote] I’d like to clarify why that’s the case. My understanding is that, when the alert does not show up, the target app still launches, right? If so, why does it matter whether the alert shows up or not? [quote='811856021, aaronvalentino, /thread/811856, /profile/aaronvalentino'] I'm using the MSAL library. [/quote] What API is it using under the covers? I can’t really help you with third-party libraries; I need to understand what Apple API is in use. Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
5d
Reply to Endpoint Security entitlement for open-source behavioral monitoring tool
[quote='820718021, sivan-rnd, /thread/820718, /profile/sivan-rnd'] What are the realistic chances of getting Endpoint Security entitlements approved for this type of project? [/quote] I don’t think you’ll get a definitive answer to this here on DevForums. The folks who approve access to this capability don’t lurk here. My general advice would be to “Suck it and see.” It is possible for you to test Endpoint Security without being approved. See here. But let me reiterate this bit: Don’t disable SIP on a Mac that you care about. Finally, I want to touch on this: [quote='820718021, sivan-rnd, /thread/820718, /profile/sivan-rnd'] This is an open-source project … [/quote] Remember that capabilities are assigned to a specific team, so someone trying to build a product based on your open source would also have to apply for the ES capability. Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
Topic: Privacy & Security SubTopic: General Tags:
5d
Reply to Interoperability and traffic flow when multiple Transparent Proxy providers coexist
[quote='820632021, Pavel, /thread/820632, /profile/Pavel'] How does macOS handle coexistence between multiple Transparent Proxy providers … ? [/quote] Generally, traffic in transferred from one proxy to the next to the next, but there are a couple of things to watch out for. First, the order in which transparent proxies load isn’t specified unless the proxies are configured by the device manager with an order property. Second, each flow received by the proxy has a metadata value. If your proxy wants to ascribe a network connection to that flow — so that subsequent subsystems in the chain understand that this network connection is ‘owned’ by the original application — it must apply that metadata to the flow. With Network framework you do that by applying the metadata to the parameters used to create the connection, using either the setMetadata(_:) method or the setMetadata(on:) method, depending on whether you’re using C or Swift. Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple
Topic: App & System Services SubTopic: Core OS Tags:
5d
Reply to Free trial for one-time purchase: Is the $0 IAP workaround still recommended in 2026?
One more thing… I recently heard about this from a friend who was part of an effort to form an Apple developer union—free trial support was one of their core gripes. Wired, 2018: Fed Up With Apple’s Policies, App Developers Form a ‘Union’ —Lauren Goode Relevant excerpt Apple has given developers some ability to offer free app trials, for time periods ranging from three days up to a whole year. But a free trial can only accompany a subscription app. This means that when opting to get the free trial, the customer has to authorize Apple to automatically charge them when a trial ends, developers say. The ideal situation, they say, would allow them to offer free trials for all apps, at lengths they determine, and without barriers that might make people shy away from trying their apps. Eight years later, that “without barriers” line still hits.
5d
Reply to ApplicationMusicPlayer.shared player.play() permission denied in app sandbox (Tauri)
I can’t help you with the third-party tooling side of this. My advice is that you set up a small Xcode test project to exercise the APIs in question. If you get stuck with that, I’d be happy to help. Once you get that working, you can translate that knowledge to your third-party environment. And if you have problems with that, you can seek help via its support channel. However, I can tell you that this is wrong: [quote='820580021, i12n, /thread/820580, /profile/i12n'] I do have these entries in my Entitlements.plist … com.apple.developer.music-kit [/quote] MusicKit is one of the most commonly hallucinating entitlements. Indeed, I listed it, with a slightly different spelling, in Determining if an entitlement is real. Oh, and if you were using a modern version of Xcode, it would’ve told you about this, which is another good reason to prototype this stuff in Xcode. Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
Topic: Media Technologies SubTopic: General Tags:
5d
Reply to NEAppProxyUDPFlow.writeDatagrams fails with "The datagram was too large" on macOS 15.x, macOS 26.x
I’m not sure what’s causing the main error here, but let’s start with endpoints, and specifically my NWEndpoint History and Advice post. This explains the general landscape. NEAppProxyUDPFlow has read and write methods that use Network.NWEndpoint type. See here and here. These are the Swift async versions; there are also equivalent completion handler versions. In terms of how to handle endpoints, it’s best to approach this from the perspective of the client, that is, the DNS client that’s issuing DNS requests to resolve queries. And specifically a BSD Sockets client, which will: Open a socket. Optionally connect the socket to an endpoint (aka address). Send a datagram. If it connected the socket, it can call one of the send routines that doesn’t take an endpoint. If it didn’t connect the socket, it must supply an endpoint at this point. Receive a datagram, along with the source of that datagram. From your perspective steps 1 and 2 result in a new flow. If you want to know what endpoint the client connected to
5d
Allow to open parent app from ShieldActionDelegate: `ShieldActionResponse.openParentApp`
Hello, I am the developer of an app called one sec which helps users to spend less time on social media: https://one-sec.app Therefore, we make heavy use of the Screen Time API, and thus ManagedSettings and ShieldActionDelegate. One feature of one sec is the so-called “Doom Scroll Emergency Brake”. This blocks a target app after a certain usage threshold (e.g. 5 minutes) and requires going through an intervention (e.g. breathing exercise) to unlock more time. That added friction makes it very effective in reducing time spent on apps. One thing that is confusing for our users is the way they are prompted to unlock more time, if they want to. They have to: Have Push Notifications enabled for one sec Exempt one sec’s notifications from being delayed by AI prioritization (otherwise they are delayed by ca. 10s) Ensure that push notifications can be delivered during foci. Understand that they have to tap on the notification, which is not very straight-forward because it does not make sense from the user’s UX perspe
0
0
41
5d
Reply to The future of Rosetta
What Ed said plus… Keep in mind that Rosetta will continue to function on older releases of macOS. So no matter what happens in the future, you can test these small programs by running them on, say, macOS 26 in a VM. Oh, and what’s the name of your YouTube channel? I’m always happy to learn about folks teaching assembly (-: even if it is Intel assembly )-: Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
5d
Reply to TkSmartCard transmitRequest persistently returning Cryptotokenkit error -2 on iOS/iPadOS
Thanks for bringing this to the forums. [quote='820659021, idopte, /thread/820659, /profile/idopte'] returns the following error: Domain: CryptoTokenKit Code: -2 [/quote] That is TKErrorCodeCommunicationError, aka TKError.Code.communicationError in Swift. This is a very generic error that basically means that something went wrong with… well… the communication with the smart card. [quote='820659021, idopte, /thread/820659, /profile/idopte'] At this point, the system appears to be stuck in a non-recoverable state which affects all readers and cards [/quote] Yeah, that’s not good. This is clearly a bug and I appreciate you filing a bug report about it (FB22339746). I took a look at your bug and noticed that you haven’t attached a sysdiagnose to it. Or, more accurately, it says that there’s an associated sysdiagnose log but it hasn’t finished uploading. Please run Feedback Assistant on the iOS device that captured the sysdiagnose log and check on its upload status. Alternatively, export the sysdiagnose log to you
Topic: Privacy & Security SubTopic: General Tags:
5d
Reply to AXSpeech Thread Crash SEGV_ACCERR
Those crash reports didn’t come through intact )-: To summarise the points I made earlier: To look into this in more detail I need a complete Apple crash report. Ideally a JSON crash report (.ips). Ideally one from an app with no third-party crash reporters [1]. See Posting a Crash Report for advice on how to post such a crash report. Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com [1] See Implementing Your Own Crash Reporter for an explanation as to why third-party crash reporters are a problem.
Replies
Boosts
Views
Activity
5d
Reply to Cellular not initializing on iPadOS 26.4 (resolved by network reset)
I am having the exact same issues with the same parameters. Ipad Air 9, eSIM 26.4 Update Managed by Apple Business manager and Intune Fix I found yesterday was wiping them using Intune, including wiping cellular service. They would then reactivate eSIM and Verizon service, then reload their profile. Finally wiped and confirmed this particular fleet working again yesterday afternoon, but this morning they have all but most lost service again. Fix was temporary. Edit: Network reset will get them working for about 10 minutes, but then the full bars drop to one bar, and the cellular is completely non-functional again.
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
5d
Reply to Cellular not initializing on iPadOS 26.4 (resolved by network reset)
You might have more luck asking this in over in the Apple Support Community, run by Apple Support, and specifically in the Business and Education topic area, where you’re more likely to find folks with relevant experience. DevForums is primarily focused on helping developers with APIs in Apple’s various platform SDKs, and that’s not a factor here. 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
5d
Reply to Working Anti Virus - Apple Developer Account terminated
Yeah we have abandoned the Anti Virus project completely, interestingly though the appeal form doesn't function for us. It displays an error. I've emailed apple support.
Replies
Boosts
Views
Activity
5d
Reply to Control over "\(your_app) wants to open \(another_app)" Dialog
Sorry I didn’t respond earlier; I was hoping that someone else would wade in. Can you post a screenshot of the specific alert you’re referring to. [quote='811856021, aaronvalentino, /thread/811856, /profile/aaronvalentino'] My team needs to understand this behavior [/quote] I’d like to clarify why that’s the case. My understanding is that, when the alert does not show up, the target app still launches, right? If so, why does it matter whether the alert shows up or not? [quote='811856021, aaronvalentino, /thread/811856, /profile/aaronvalentino'] I'm using the MSAL library. [/quote] What API is it using under the covers? I can’t really help you with third-party libraries; I need to understand what Apple API is in use. Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
Replies
Boosts
Views
Activity
5d
Reply to stuck on apple's developers enrollment, without any answer for 10 days
I wish that was the case I can't see any phone number on the site I understand that some people can and others can't how do i get their number? I even called twice to the apple's global support and they couldn't refer me to the developers program group
Replies
Boosts
Views
Activity
5d
Reply to Endpoint Security entitlement for open-source behavioral monitoring tool
[quote='820718021, sivan-rnd, /thread/820718, /profile/sivan-rnd'] What are the realistic chances of getting Endpoint Security entitlements approved for this type of project? [/quote] I don’t think you’ll get a definitive answer to this here on DevForums. The folks who approve access to this capability don’t lurk here. My general advice would be to “Suck it and see.” It is possible for you to test Endpoint Security without being approved. See here. But let me reiterate this bit: Don’t disable SIP on a Mac that you care about. Finally, I want to touch on this: [quote='820718021, sivan-rnd, /thread/820718, /profile/sivan-rnd'] This is an open-source project … [/quote] Remember that capabilities are assigned to a specific team, so someone trying to build a product based on your open source would also have to apply for the ES capability. 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
5d
Reply to Interoperability and traffic flow when multiple Transparent Proxy providers coexist
[quote='820632021, Pavel, /thread/820632, /profile/Pavel'] How does macOS handle coexistence between multiple Transparent Proxy providers … ? [/quote] Generally, traffic in transferred from one proxy to the next to the next, but there are a couple of things to watch out for. First, the order in which transparent proxies load isn’t specified unless the proxies are configured by the device manager with an order property. Second, each flow received by the proxy has a metadata value. If your proxy wants to ascribe a network connection to that flow — so that subsequent subsystems in the chain understand that this network connection is ‘owned’ by the original application — it must apply that metadata to the flow. With Network framework you do that by applying the metadata to the parameters used to create the connection, using either the setMetadata(_:) method or the setMetadata(on:) method, depending on whether you’re using C or Swift. Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
5d
Reply to Free trial for one-time purchase: Is the $0 IAP workaround still recommended in 2026?
One more thing… I recently heard about this from a friend who was part of an effort to form an Apple developer union—free trial support was one of their core gripes. Wired, 2018: Fed Up With Apple’s Policies, App Developers Form a ‘Union’ —Lauren Goode Relevant excerpt Apple has given developers some ability to offer free app trials, for time periods ranging from three days up to a whole year. But a free trial can only accompany a subscription app. This means that when opting to get the free trial, the customer has to authorize Apple to automatically charge them when a trial ends, developers say. The ideal situation, they say, would allow them to offer free trials for all apps, at lengths they determine, and without barriers that might make people shy away from trying their apps. Eight years later, that “without barriers” line still hits.
Replies
Boosts
Views
Activity
5d
Reply to Memory Leak in new structured concurrency Network Framework API's
[quote='820645021, Np_dev, /thread/820645, /profile/Np_dev'] Raised a feedback assistant request … FB22339653 [/quote] Thanks for that. A bug report is clearly the correct path forward here. Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
Replies
Boosts
Views
Activity
5d
Reply to ApplicationMusicPlayer.shared player.play() permission denied in app sandbox (Tauri)
I can’t help you with the third-party tooling side of this. My advice is that you set up a small Xcode test project to exercise the APIs in question. If you get stuck with that, I’d be happy to help. Once you get that working, you can translate that knowledge to your third-party environment. And if you have problems with that, you can seek help via its support channel. However, I can tell you that this is wrong: [quote='820580021, i12n, /thread/820580, /profile/i12n'] I do have these entries in my Entitlements.plist … com.apple.developer.music-kit [/quote] MusicKit is one of the most commonly hallucinating entitlements. Indeed, I listed it, with a slightly different spelling, in Determining if an entitlement is real. Oh, and if you were using a modern version of Xcode, it would’ve told you about this, which is another good reason to prototype this stuff in Xcode. Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
Topic: Media Technologies SubTopic: General Tags:
Replies
Boosts
Views
Activity
5d
Reply to NEAppProxyUDPFlow.writeDatagrams fails with "The datagram was too large" on macOS 15.x, macOS 26.x
I’m not sure what’s causing the main error here, but let’s start with endpoints, and specifically my NWEndpoint History and Advice post. This explains the general landscape. NEAppProxyUDPFlow has read and write methods that use Network.NWEndpoint type. See here and here. These are the Swift async versions; there are also equivalent completion handler versions. In terms of how to handle endpoints, it’s best to approach this from the perspective of the client, that is, the DNS client that’s issuing DNS requests to resolve queries. And specifically a BSD Sockets client, which will: Open a socket. Optionally connect the socket to an endpoint (aka address). Send a datagram. If it connected the socket, it can call one of the send routines that doesn’t take an endpoint. If it didn’t connect the socket, it must supply an endpoint at this point. Receive a datagram, along with the source of that datagram. From your perspective steps 1 and 2 result in a new flow. If you want to know what endpoint the client connected to
Replies
Boosts
Views
Activity
5d
Allow to open parent app from ShieldActionDelegate: `ShieldActionResponse.openParentApp`
Hello, I am the developer of an app called one sec which helps users to spend less time on social media: https://one-sec.app Therefore, we make heavy use of the Screen Time API, and thus ManagedSettings and ShieldActionDelegate. One feature of one sec is the so-called “Doom Scroll Emergency Brake”. This blocks a target app after a certain usage threshold (e.g. 5 minutes) and requires going through an intervention (e.g. breathing exercise) to unlock more time. That added friction makes it very effective in reducing time spent on apps. One thing that is confusing for our users is the way they are prompted to unlock more time, if they want to. They have to: Have Push Notifications enabled for one sec Exempt one sec’s notifications from being delayed by AI prioritization (otherwise they are delayed by ca. 10s) Ensure that push notifications can be delivered during foci. Understand that they have to tap on the notification, which is not very straight-forward because it does not make sense from the user’s UX perspe
Replies
0
Boosts
0
Views
41
Activity
5d
Reply to The future of Rosetta
What Ed said plus… Keep in mind that Rosetta will continue to function on older releases of macOS. So no matter what happens in the future, you can test these small programs by running them on, say, macOS 26 in a VM. Oh, and what’s the name of your YouTube channel? I’m always happy to learn about folks teaching assembly (-: even if it is Intel assembly )-: Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
Replies
Boosts
Views
Activity
5d
Reply to TkSmartCard transmitRequest persistently returning Cryptotokenkit error -2 on iOS/iPadOS
Thanks for bringing this to the forums. [quote='820659021, idopte, /thread/820659, /profile/idopte'] returns the following error: Domain: CryptoTokenKit Code: -2 [/quote] That is TKErrorCodeCommunicationError, aka TKError.Code.communicationError in Swift. This is a very generic error that basically means that something went wrong with… well… the communication with the smart card. [quote='820659021, idopte, /thread/820659, /profile/idopte'] At this point, the system appears to be stuck in a non-recoverable state which affects all readers and cards [/quote] Yeah, that’s not good. This is clearly a bug and I appreciate you filing a bug report about it (FB22339746). I took a look at your bug and noticed that you haven’t attached a sysdiagnose to it. Or, more accurately, it says that there’s an associated sysdiagnose log but it hasn’t finished uploading. Please run Feedback Assistant on the iOS device that captured the sysdiagnose log and check on its upload status. Alternatively, export the sysdiagnose log to you
Topic: Privacy & Security SubTopic: General Tags:
Replies
Boosts
Views
Activity
5d