Search results for

missing package product

51,063 results found

Post

Replies

Boosts

Views

Activity

Age verification implementation in IOS Apps
Hi Team, We are planning to implement the age verification logic in our iOS app and our app rating in AppstoreCoonnect is 16+. Our app is like eComm Application. Our customer can login into our application and order the products. Now we want to introduce the Age verification logic when user tries to purchase products from App. Could you suggest which API we should use to adhere the Age verification in our Application?
1
0
277
2w
tvOS Focus Halo Does Not Respect cornerRadius on UIImageView
The Problem When using adjustsImageWhenAncestorFocused = true on a UIImageView in tvOS, the native focus halo effect does not respect the cornerRadius property set on the image view's layer. The image itself correctly clips to the rounded corners, but the focus halo (the glowing outline that appears when the view is focused) always renders with square or nearly-square corners. Code Example let imageView = UIImageView() imageView.layer.cornerRadius = 60 imageView.clipsToBounds = true imageView.adjustsImageWhenAncestorFocused = true imageView.image = posterImage Result: The poster image displays with 60pt rounded corners as expected, but when focused, the halo effect has square corners - creating an obvious visual mismatch. Expected Behavior The focus halo should follow the same cornerRadius as the UIImageView. If I set a 60pt corner radius, both the image and its focus halo should have matching 60pt rounded corners. Actual Behavior The image respects cornerRadius and displays with rounded corners The focus hal
Topic: UI Frameworks SubTopic: UIKit
0
0
94
2w
Reply to Are read-only filesystems currently supported by FSKit?
I suppose a lot of my confusion lies in how FSBlockDeviceResource.blockSize is described as The logical block size, the size of data blocks used by the file system, which I understand to mean that in my case, I should be able to set it to the value stored in the superblock (let's say that's 4096). So, the more useful description is what's in the discussion: FSBlockDeviceResource.physicalBlockSize: This is equivalent to the DKIOCGETPHYSICALBLOCKSIZE device parameter. Conceptually, this means the smallest transfer the device is physically capable of transferring. In high-level API terms, all I/O done to the rdev (raw dev node) MUST be an even multiple of this value, otherwise the I/O will immediately fail without ever reaching the hardware driver. FSBlockDeviceResource.blockSize: This is equivalent to the DKIOCGETBLOCKSIZE device parameter. This value is the device’s preferred I/O size, meaning the size it would like to have even if it COULD handle smaller requests. Two points to understand here: Much of the ti
Topic: App & System Services SubTopic: Core OS Tags:
2w
Flutter library that basically makes a call every "x" minutes if the app is in the background.
Hi everyone, could you help us? We implemented a Flutter library that basically makes a call every x minutes if the app is in the background, but when I generate the version via TestFlight for testing, it doesn't work. Can you help us understand why? Below is a more detailed technical description. Apple Developer Technical Support Request Subject: BGTaskScheduler / Background Tasks Not Executing in TestFlight - Flutter App with workmanager Plugin Issue Summary Background tasks scheduled using BGTaskScheduler are not executing when the app is distributed via TestFlight. The same implementation works correctly when running the app locally via USB/Xcode debugging. We are developing a Flutter application that needs to perform periodic API calls when the app is in the background. We have followed all documentation and implemented the required configurations, but background tasks are not being executed in the TestFlight build. App Information Field Value App Version 3.1.15 (Build 311) iOS Minimum Deployment Target
2
0
54
2w
Reply to sshd-keygen-wrapper permissions problem
[quote='867728022, shara7, /thread/806187?answerId=867728022#867728022, /profile/shara7'] I assume this is simply a bug [/quote] That’s correct. If you’re building a macOS product and this is causing you significant amounts of grief, it might make sense to ship an update to your product that embeds your program in an app-like wrapper (per Kevin’s suggestion above). Otherwise, my advice is that you wait for a fix. And, no, I don’t have any info to share as to when that fix will actually land. Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
Topic: Privacy & Security SubTopic: General Tags:
2w
Certificate revocation check with SecPolicyCreateRevocation/SecTrustEvaluateWithError does not work
When trying to check if a certificate has been revoked with SecPolicyCreateRevocation (Flags: kSecRevocationUseAnyAvailableMethod | kSecRevocationRequirePositiveResponse) and SecTrustEvaluateWithError I always get the result error code errSecIncompleteCertRevocationCheck, regardless if the certificate was revoked or not. Reproduction: Execute the program from the attached Xcode project (See Feedback FB21224106). Error output: Error: Error Domain=NSOSStatusErrorDomain Code=-67635 revoked.badssl.com,E8,ISRG Root X1 certificates do not meet pinning requirements UserInfo={NSLocalizedDescription=revoked.badssl.com,E8,ISRG Root X1 certificates do not meet pinning requirements, NSUnderlyingError=0x6000018d48a0 {Error Domain=NSOSStatusErrorDomain Code=-67635 Certificate 0 “revoked.badssl.com” has errors: Failed to check revocation; UserInfo={NSLocalizedDescription=Certificate 0 “revoked.badssl.com” has errors: Failed to check revocation;}}} To me it looks like that the revocation check just fails („Failed to check re
6
0
696
2w
Reply to Seeking Official Channel for Third-Party Utility API Integration Proposal
While it’s possible that someone else might chime in, this is kinda off topic for the Apple Developer Forums. Our focus is on helping developers use Apple APIs, tools, and services to create products for Apple’s platforms. We’re not set up to help with requests like this. Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
2w
Reply to Running headless app as root for handling VPN and launching microservices
Does your product include a Network Extension provider that implements a custom VPN protocol? Or are you configuring the built-in VPN protocols using the Personal VPN API? And if you do have an NE provider, is it packaged as an appex or a sysex? Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
2w
Reply to Thoughts while looking into upgrading from SCNetworkReachabilityGetFlags to NWPathMonitor
[quote='808401021, Mathias_, /thread/808401, /profile/Mathias_'] The advantage here with SCNetworkReachabilityGetFlags … would be that it's synchronous? [/quote] Yes and no. The API itself is synchronous, but it can block the calling thread waiting for the resolution to complete. That’s not exactly ideal. Coming back to your top-level issue, you wrote: [quote='867556022, Mathias_, /thread/808401?answerId=867556022#867556022, /profile/Mathias_'] For our geofence triggers for example [/quote] I think I’m missing something here. If you make the request without waiting for connectivity, it’ll fail promptly in most cases when the network is down. Do you need the network state to preflight the request? Or only to generate a better user-facing message if it’s already failed? Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
2w
Reply to ASWebAuthenticationSession.start() does not display authentication UI on macOS (no error, no callback)
Hello Apple Developer Community, Following my previous unanswered post, I created a very simple macOS test application to reproduce the issue in the smallest possible setup. I’m having an issue with ASWebAuthenticationSession on macOS when trying to authenticate with Microsoft Azure AD. I wrote a very simple macOS application whose only purpose is to sign in to Microsoft Azure and obtain an authorization code/token. The app is registered in Microsoft Entra as an iOS/macOS public client. Target macOS: 15.7+ App registration in Azure: Bundle Identifier: com.organization.testauthapp Redirect URI: msauth.com.organization.testauthapp://auth MSAL configuration: let kClientID = CCCCCCCC-CCCC-CCCC-CCCC-CCCCCCCCCCCC let kRedirectUri = msauth.com.organization.testauthapp://auth let kAuthority = https://login.microsoftonline.com/TTTTTTTT-TTTT-TTTT-TTTT-TTTTTTTTTTTT let kGraphEndpoint = https://graph.microsoft.com/ (I intentionally anonymized tenantId as TTTT... and clientId as CCCC....) My app contains only one button,
2w
reference preinstalled certificate keypair from an MDM profile
For additional security we would like to avoid keeping generated certificates (their private keys) on our server after installing them on a device, but still be able to reference them in later installed configuration profiles via MDM. However, it seems that for a configuration profile's payload to use a certificate (e.g. VPN payload), the certificate payload must be present in the same profile. Are we missing anything, perhaps it's already possible somehow? Ideal workflow for us would be: our MDM server generates a certificate (private+public keys) for a given device our MDM server sends this certificate to the device as configuration profile and saves PayloadUUID of the certificate's payload our MDM server deletes the generated private key from its storage. At this point the private key is present only on the device. at some point in the future our MDM server sends a configuration profile that references the certificate from step 2 via the saved PayloadUUID (e.g. using key PayloadCertificateUUID in
1
0
932
2w
Reply to Need Inputs on Which Extension to Use
Hi @DTS Engineer , Thank you very much for your responses, really helpful. For the past two weeks, I've been experimenting with a macOS System Extension application that manages three different Network Extension providers (NEFilterDataProvider, NETransparentProxyProvider, and NEDNSProxyProvider) housed within a single systemext bundle (Xcode target2), all managed and activated by a single main application(Xcode target1). My goal is to reliably capture comprehensive network activity logs from all three extensions simultaneously, particularly under high-traffic conditions. I've run into a few architectural questions regarding prioritization, concurrency, and logging reliability. Part 1: Extension Activation Order and Execution Predictability When multiple Network Extensions are active, how does the system process traffic, and is there a guaranteed order of execution? Q1: Given that all three extensions are active, is there a predictable order in which the network traffic will hit the providers? For example, sho
2w
Reply to iOS 26 fails to automatically switch to [system settings - personal hotspot ] directly from application ]
Sorry I didn’t respond earlier. You replied as a comment and I missed that )-: It’s better to reply as a reply. See Quinn’s Top Ten DevForums Tips for this and other titbits. Does this suggest that iOS 26 does not support this functionality? Yes. Moreover, is it possible that versions of iOS 18 and earlier may also not support this behavior in the future? I don’t normally comment on The Future™, but in this case the future is today. This technique is already unsupported on iOS 18. It just happens to work, but that’s an implementation detail. As to what you should do, I agree with Scott’s advice on your other thread. Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
Topic: App & System Services SubTopic: General Tags:
2w
Notification Tones of tonetype SystemSounds is Not Routing to Connected Bluetooth HFP Accessory (WM500)
When an iOS device is connected to a Bluetooth accessory that utilizes the Hands-Free Profile (HFP), we are encountering an incorrect audio routing behavior specifically for system notification tones. Accessory Connected: The iOS device is successfully connected to a Bluetooth accessory (specifically, a WM500 device) using the HFP profile for voice communication. Voice Audio: Audio streams related to phone calls or voice communication (using the HFP/SCO link) are correctly routed to the WM500. Notification Tones Issue: System notification tones, which are played using the tonetype.systemsounds API, are not being routed to the connected HFP accessory (WM500). Instead, they are incorrectly played through the iOS device's built-in speaker. This causes a poor user experience, as critical application alerts and system notifications are missed when the user is relying on the connected HFP accessory for all audio output.
0
0
23
2w
Reply to Issue with iOS group entitlements being recognized
You definitely want to use automatic code signing for this stuff (-: Try this: In Signing & Capabilities, enable automatic code signing on both targets. Then remove the App Groups capability from each target. Select a real device as a run destination and choose Product > Build. I’d expect that to work (-: Back in Signing & Capabilities, add the App Groups capability to the app target. And enable the relevant group from the list shown by that capability. Try building again. Repeat steps 4 through 6 for the widget target. How far do you get? And if things fail, what error do you see? Also, what version of Xcode are you using? Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
2w