Search results for

Apple Maps Guides

149,831 results found

Post

Replies

Boosts

Views

Activity

New Need Help On Distributing My App
I hate to be the new guy but this is our first venture into distributing an app through Apple. Our app will be finished by the end of the year but I've heard you can get pre approval but I'm not really sure where to turn to so I can get the process started either for that or full approval when it's done. Can anyone help point me in the right direction? Thank you.
2
0
119
3d
422 error "Beta contract is missing" Testflight
I'm currently experiencing the same problem that many have had with error 422 Beta contract is missing. I read that I should contact Apple support, but when I try to access the support page and log in with my credentials, the page doesn't load and I can't generate a ticket to resolve this problem. I get the message There was an error processing your request. Please try again later. And when I inspect with Safari it shows me this information: errors : [ { id : 9be0314c-3bd5-4143-a625-602322d7156e, status : 422, code : ENTITY_UNPROCESSABLE.BETA_CONTRACT_MISSING, title : Beta contract is missing for the app., detail : Beta Contract is missing. } ] This is when I want to share the most recent build of my app with external groups through Testflight, but additionally, when my internal testers try to access it through Testflight app, it shows the error The requested app is not available or doesn't exist. Could someone tell me what process I should follow or where I can correctly generate the ticket for my e
1
0
675
3d
Reply to DEXT receives zero-filled buffer from DMA, despite firmware confirming data write
While the DEXT loads successfully, I'm facing a DMA issue: an INQUIRY command results in a 0-byte disk because the data buffer received by the DEXT is all zeros, despite our firmware logs confirming that the correct data was prepared and sent. How is your DEXT getting access to the transfer data? SCSIControllerDriverKit was intentionally architected to make that very difficult. Compared to a KEXT, are there any known, stricter IOMMU/security policies for a DEXT that could cause this kind of silent write failure (even with a correct IOVA)? No, not really. However, I think you've confused things a bit here: Alternatively, what is the correct and complete expected workflow in DriverKit for preparing an IOMemoryDescriptor* fDataBuffer (received in UserProcessParallelTask) for a PCI hardware device to use as a DMA write target? My concern here is where you say: ...for preparing an IOMemoryDescriptor* fDataBuffer The problem is that the whole goal of UserProcessParallelTask is to AVOID giving you an IOMemoryDescrip
Topic: App & System Services SubTopic: Drivers Tags:
3d
HealthKit in React Native + Expo Dev Client: no authorization prompt (and no data)
Hi everyone, I’m building a health app with React Native using Expo Dev Client on a real iPhone. I need to read Apple Health (HealthKit) data, but the authorization sheet never appears—so the app never gets permissions and all queries return nothing. What I’ve already done Enabled HealthKit capability for the iOS target. Added NSHealthShareUsageDescription and NSHealthUpdateUsageDescription to Info.plist. Using a custom dev build (not Expo Go). Tested fresh installs (deleted the app), rebooted device, and checked Settings → Privacy & Security → Health/Motion & Fitness. Tried both packages: react-native-health and @kingstinct/react-native-healthkit. Same behavior: no permission dialog at first use. Ask Is there a known reason why the HealthKit permission sheet would not show on modern iOS when called from a React Native bridge (with Expo Dev Client)? Are there any extra entitlements, signing, or config-plugin steps required beyond HealthKit capability + Info.plist? If you’re successfully fetch
1
0
56
3d
Reply to macOS 15 (Sequoia): Endpoint Security client runs by hand, but LaunchDaemon fails with TCC “Full Disk Access” denial on unmanaged Macs
Our ES client launches and functions when started manually (terminal). FYI, this is almost certainly because you previously granted Terminal.app FDA, which your client then inherited. Terminal.app does not have any unique/privileged access to the file system. We can’t find a supported way to grant Full Disk Access (SystemPolicyAllFiles) to a system daemon on unmanaged Macs (no MDM). The supported way to do this is for the user to grant your daemon FDA through System Setting-> Privacy & Security-> Full Disk Access. You may have already tried this and found that the interface wouldn't let you select this bare executable: /Library/Application Support///Platform/ However, the direct solution to that is simply embed your daemon executable inside an app bundle, as described here. However, this would also be a great time to adopt SMAppService, which would change some of the requirements/behavior here. Covering some specifics: On macOS 14/15, is Full Disk Access for system daemons strictly MDM-only via PPPC
Topic: Privacy & Security SubTopic: General Tags:
3d
Reply to Safari - first click, blur, etc event not wokring after typing Korean character at input element
Our engineering teams need to investigate this issue, as resolution may involve changes to Apple's software. Please file a bug report, include a small Xcode project and some directions that can be used to reproduce the problem, and post the Feedback number here once you do. If you post the Feedback number here I'll check the status next time I do a sweep of forums posts where I've suggested bug reports. Bug Reporting: How and Why? has tips on creating your bug report.
Topic: Safari & Web SubTopic: General Tags:
3d
Request for Clarification: Developer Account Termination After Metadata Issue
Hello, My Apple Developer account has recently been flagged for termination on the grounds of “fraudulent or dishonest activity.” The reason given was misleading metadata, specifically related to references to “Nano Banana”. I want to clarify a few important points: My app legitimately uses Google’s official API via fal.ai, and I pay for this usage. My app was published before Google even introduced “Nano Banana” as an internal label in Gemini, so there was no way for me to anticipate a conflict. “Nano Banana” is not a registered trademark, only a label Google uses internally. I have already removed every single reference to it from my app and metadata. Currently, none of my applications contain misleading content, inaccurate metadata, or third-party trademarks. My account is in full compliance with the Developer Program License Agreement and App Review Guidelines. Despite this, Apple has proceeded with termination. As an independent developer, this feels like a double standard compared to c
1
0
66
3d
Reply to PDFKit Page Rerender
Thanks for mentioning this problem. I have seen other reports of this as well. Our engineering teams need to investigate this issue, as resolution may involve changes to Apple's software. Please file a bug report, include a small Xcode project and some directions that can be used to reproduce the problem, and post the Feedback number here once you do. If you post the Feedback number here I'll check the status next time I do a sweep of forums posts where I've suggested bug reports. Bug Reporting: How and Why? has tips on creating your bug report.
Topic: Graphics & Games SubTopic: General Tags:
3d
Reply to How to allocate contiguous memory in DriverKit?
I'm aware that IOBufferMemoryDescriptor::Create can be used in DriverKit to allocate memory and share it with user space. However, is the allocated memory physically contiguous? True physical continuity is largely irrelevant on our platforms. At this point, all of our platforms include an IOMMU which manages mapping 64-bit memory ranges into the physical addresses visible to devices on the PCI bus. You can read more about how this actually works in Background Info on PCI Address Translation. Can it guarantee that when I subsequently call PrepareForDMA in IODMACommand, there will be only one segment? Yes. Many of our DEXTs actually check that segmentsCount==1 and assert (crash) on any value other than 1. Having the descriptor segment would imply that the machine was so far out of the expected behavior range that they'd prefer to crash instead of trying to sort it out. I'm actually not sure a DEXT could get IODMACommand to segment. Inside the kernel, this is typically caused by IOMultiMemoryDescriptor,
Topic: App & System Services SubTopic: Drivers Tags:
3d
USDZ Gaussian Splat shaders
It is now possible to save the incredibly realistic Gaussian splat format in USDZ file format. Yet iOS cannot display them. This is a massive gap in content flexibility and use case for users of iOS. Apple’s quick look would be a perfect fit for AR and model view of digital twins of products and buildings etc, enabling millions of users to have extended user experiences and designers extended platforms to display gaussian splats. Android can already display Gaussian splats in AR, it’s crazy that apple should restrict this format either from the website viewers, or by linked usdz file. I hope the Apple dev team will consider expanding this functionality to hugely improve user experiences, and allow a global platform to developers and marketplaces to create better digital twins, and product marketplaces.
1
0
151
3d
Reply to Drag and Drop Question
Thank you for the reply. I shared the test project to my apple support ticket that I created. The apple support ticket is Case-ID: 16525926. Let me elaborate some more as to what I am referring too. In my app we are using polymorphism that cannot be Codable. But we need to drag and drop objects into a predefined box, label, table, etc and if we simply code everything as a data blob it works no problem. But the user will not know that the drop area for Character Names was not accepted if you dropped it on Played by drop zone. The below Standard Object is shared by the other two classes. This gets ignored by Codable. So, if you try and package them up without Codable in your own data blob, it's fine. But the drop zone cannot determine that the data blob from CharecterName is different from PlayedBy. Therefore accepts drop. You can use validation afterwards to prevent errors. But that is after the mouse pointer gives you a green + sign saying that this object belongs to this drop. Im trying to
Topic: UI Frameworks SubTopic: SwiftUI Tags:
3d
How to protect endpoints used by Message Filtering Extension?
Hi, I am just wondering if there is any option to protect my endpoints that will be used by Message Filtering Extension? According to the documentation our API has 2 endpoints: /.well-known/apple-app-site-association /[endpoint setup in the ILMessageFilterExtensionNetworkURL value of the Info.plist file] that the deferQueryRequestToNetwork will request on every message Since all requests to these 2 endpoints are made by iOS itself (deferQueryRequestToNetwork), I don't understand how I can protect these endpoints on my side, like API key, or maybe mTLS. The only way that I found is white list for Apple IP range. Is there other methods for it?
1
0
61
3d