Search results for

“missing package product”

52,436 results found

Post

Replies

Boosts

Views

Activity

Reply to Driver Activation failure error code 9. Maybe Entitlements? Please help
Kevin, First, I wanted to apologize for not replying for a full month, as well as thank you very much for your reply. I was pulled away from this project for a couple weeks, and when I got back I was still spinning my wheels getting the driver installed. I only today found my issue, which wasn't something you could have helped with since I hadn't thought to include the correct context in my original comment. I only found the issue after careful log monitoring in the Console app during the install process as my main installer app was running. It turns out that my bundle ID was too long. It was 67 characters and, apparently the maximum is 63. Seems like an arbitrarily short max in this day and age, and you'd think both XCode and the Developer Portal would catch that, but that's what it was. When I redid my bundle IDs more succinctly (and all my permissions on the Apple Developer Portal), I was able to successfully install/register/enable the driver. I have granted it permission in System Settings, it shows up u
Topic: App & System Services SubTopic: Drivers Tags:
Feb ’26
Reply to macOS 26.4 Beta: built-in keyboard events no longer reach DriverKit virtual HID layer – ecosystem-wide breakage
macOS 26.4 Beta appears to have changed how built-in MacBook keyboard events are routed through IOHIDSystem. Third-party virtual HID devices loaded via DriverKit no longer receive events from the built-in keyboard. As a small side note here, I have no idea why anyone is using DriverKit to create virtual HID devices. CoreHID provides its own virtual device API which, as far as I can tell, should be able to do everything you could do with a virtual device created through DriverKit. It's possible I've overlooked some limitation (and, if so, please let me know!) but as far as I can tell a number of products have chosen a much more difficult implementation without any real benefit. https://developer.apple.com/documentation/corehid/hidvirtualdevice External keyboards are unaffected. This is already confirmed across multiple users: I'd normally ask you to file a bug on this but the engineering team is aware of the issue, so I don't think additional bugs are necessary in this particular case. https://github.
Feb ’26
Reply to Can't get USBSerialDriverKit driver loaded
Found the solution it seems to be missing CFBundle... keys even though Xcode auto generated parts of it and then it thought its a no code dext. Next problem it has an included embedded provisioning profile but the console shows its missing the entitlement that is included in the embedded provisioning profile...
Topic: App & System Services SubTopic: Drivers Tags:
Feb ’26
In-App Purchases section on App Version page to link IAPs
I have 6 In-App Purchases configured for my app (4 consumables, 2 non-consumables). They all show Waiting for Review status in the In-App Purchases section of App Store Connect. However, when I go to my app's version page (App Store tab → scroll through the version metadata), I cannot find an In-App Purchases section anywhere to link these IAPs to my app submission. I've scrolled through the entire page - I see Screenshots, Description, Keywords, Build, App Review Information, etc. - but no IAP section with a + button to add my products. When testing via TestFlight with a sandbox account, the app shows Store is currently unavailable - I believe this is because the IAPs aren't properly linked to the app. What I've verified: Paid Applications agreement is active All 6 IAPs have status Waiting for Review Product IDs match between my code and App Store Connect Sandbox tester account is configured with correct region Build is installed via TestFlight My question: Where exactly should the In-App P
0
0
58
Feb ’26
Can't get USBSerialDriverKit driver loaded
I am writing a DriverKit driver for the first that uses the USBSerialDriverKit. The driver its purpose is to expose the device as serial interface (/dev/cu.tetra-pei0 or something like this). My problem: I don't see any logs from that driver in the console and I tried like 40 different approaches and checked everything. The last message I see is that the driver get successfully added to the system it is in the list of active and enabled system driver extensions but when I plug the device in none of my logs appear and it doesn't show up in ioreg. So without my driver the target device looks like this: +-o TETRA PEI interface@02120000 | { | sessionID = 268696051410 | USBSpeed = 3 | UsbLinkSpeed = 480000000 | idProduct = 36886 | iManufacturer = 1 | bDeviceClass = 0 | IOPowerManagement = {PowerOverrideOn=Yes,DevicePowerState=2,CurrentPowerState=2,CapabilityFlags=32768,MaxPowerState=2,DriverPowerState=0} | bcdDevice = 9238 | bMaxPacketSize0 = 64 | iProduct = 2 | iSerialNumber = 0 | bNumConfigurations = 1 | UsbDev
6
0
219
Feb ’26
Customer reviews missing app version and lastModified in API
The App Store Connect API specification states that a customer review includes a rating, a title, a body, a reviewer nickname, a creation date, a territory and a response. Unfortunately, it does not provide information on the app version that was reviewed or whether it was edited after a response was posted (or at least when it was last updated). In order to retrieve all reviews including the app version, you first need to fetch all versions of an app, and then fetch all reviews per version. This results in a lot of unnecessary requests, particularly when there are very few to no reviews for a version. Furthermore, determining if or when a review has been updated by a customer is simply not possible via the API. As these informations are available in the App Store Connect UI for all reviews, I would appreciate it if they could be added to the API as well.
1
0
135
Feb ’26
App Store Connect – No verification or response for production release
Hi everyone, I’m having an issue with App Store Connect regarding the production release of my app. I submitted my app and contacted App Store Connect support because I haven’t received any verification or confirmation to proceed with the production release, but I still haven’t received any response. It has been over two weeks since I first contacted them. According to Apple’s documentation, support responses usually take around 48 hours, so I’m a bit concerned. My app is currently not moving forward to production, and I don’t see any clear indication of what is missing or if additional action is required from my side. I’ve checked App Store Connect notifications and my email (including spam), but there’s nothing. Has anyone experienced a similar situation recently? Is there a recommended way to escalate this issue (specific support category, phone call, or another process)? Any help or advice would be greatly appreciated. Thank you!
0
0
28
Feb ’26
Reply to Notarization Always Fails, Now Stuck at Max Certificates, Can't Delete
[quote='877556022, mbisque, /thread/816956?answerId=877556022#877556022, /profile/mbisque'] I am unable to revoke existing Developer ID Installer Certificates. [/quote] Right. Revoking a Developer ID certificate is a big deal because its stops existing products from running. You should only do that if the key is compromised. Quoting The Care and Feeding of Developer ID If you believe that your private key has been compromised, follow the instructions in the Compromised Certificates section of Developer > Support > Certificates. I don’t believe that’s the case here. So you have two choices. The one I recommend is that you manually recover the private key associated with one or more of your Developer ID certificates, which will give you a signing identity that you can use to sign your software. The Care and Feeding of Developer ID explains various strategies for this. And once you do that, intentionally back up the signing identity so that you don’t run into this problem again in the future. The
Feb ’26
Reply to Cannot get WiFi SSID inside launchctl agent
Thanks for all the extra info. I have a couple of comments. [quote='877572022, dolfs, /thread/816619?answerId=877572022#877572022, /profile/dolfs'] I cleaned everything out manually. [/quote] How exactly? I try to avoid testing this stuff on my development machine because the constant build / run / debug cycle exposes edge cases that are rarely seen on normal user machines. I explain my standard approach for this sort of testing in Testing a Notarised Product. It’s discussing a different technology, but the general approach will work here. IMPORTANT Most VM apps don’t virtualise Wi-Fi, so you won’t be able to test the Core WLAN side of this. But you can test the Core Location side, and I think that’s what’s key here. [quote='877571022, dolfs, /thread/816619?answerId=877571022#877571022, /profile/dolfs'] Agent requests location authorization [/quote] Have you tried requesting location authorisation from the container app? That should work because the app is just a normal GUI application. And I’m hopin
Topic: App & System Services SubTopic: Core OS Tags:
Feb ’26
Reply to Network is not working when upload smb using NEFilterDataProvider in macOS
I’m sorry I missed your reply [1]. The came up today in a different thread and I encourage you to bounce over there. Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com [1] The DevForums platform has ongoing issues with notifying folks of updates on threads. A few months back we fixed one of the more serious issues. However, this thread was before then, so it’s possible that I missed the update because of that. It’s also possible that I fumbled something myself )-:
Feb ’26
Reply to Developer Program enrollment still pending after payment
Apple Developer Payment Issue (India – UPI + Developer App Case) Sharing this in case it helps another founder avoid confusion. I was trying to purchase the Apple Developer Program under my company Apple ID using the Apple Developer App on my iPhone. Inside the Developer App, I was correctly logged in using my company Apple ID. When I initiated the ₹8,700 payment using UPI: The UPI auto-renew mandate failed. The app then prompted me to complete the payment using Apple Account balance (Apple Wallet). I proceeded with the payment. The transaction was successful. However, the ₹8,700 was credited to my personal Apple ID’s Apple Account balance, not the company Apple ID. Why This Happened Even though I was logged into the Developer App with my company Apple ID, in my iPhone Settings, my personal Apple ID was signed in. When the payment was processed to Apple Wallet, it was credited to the Apple ID logged in at the device level (Settings) — not the Apple ID inside the Developer App. To verify this, I checked: Setti
Feb ’26
Reply to Apple Developer Program Membership Fee Deducted but Not Reflected in Account
Apple Developer Payment Issue (India – UPI + Developer App Case) Sharing this in case it helps another founder avoid confusion. I was trying to purchase the Apple Developer Program under my company Apple ID using the Apple Developer App on my iPhone. Inside the Developer App, I was correctly logged in using my company Apple ID. When I initiated the ₹8,700 payment using UPI: The UPI auto-renew mandate failed. The app then prompted me to complete the payment using Apple Account balance (Apple Wallet). I proceeded with the payment. The transaction was successful. However, the ₹8,700 was credited to my personal Apple ID’s Apple Account balance, not the company Apple ID. Why This Happened Even though I was logged into the Developer App with my company Apple ID, in my iPhone Settings, my personal Apple ID was signed in. When the payment was processed to Apple Wallet, it was credited to the Apple ID logged in at the device level (Settings) — not the Apple ID inside the Developer App. To verify this, I checked: Setti
Feb ’26
App Crashes on iOS 26 in Network.framework / boringssl – objc_release & memory corruption
Hello Apple Support Team, We are seeing a production crash on iOS 26 devices that appears to originate from Apple system frameworks rather than application code. 1. Crash Details OS Version: iOS 26.x App built with: Xcode 16 Devices: Multiple models (not device-specific) Exception Type: SIGSEGV SEGV_ACCERR Fault Address: 0x0000000000000100 Crashed Thread: 4 (network background queue) Crash trace summary: Last Exception : 0 libobjc.A.dylib _objc_release_x8 + 8 1 libboringssl.dylib _nw_protocol_boringssl_deallocate_options + 92 2 Network 0x000000019695207c 0x00000001968dc000 + 483452 3 libswiftCore.dylib __swift_release_dealloc + 56 4 libswiftCore.dylib bool swift::RefCounts >::doDecrementSlow<(swift::PerformDeinit)1>(swift::RefCountBitsT<(swift::RefCountInlinedness)1>, unsigned int) + 152 5 Network 0x0000000196951f6c 0x00000001968dc000 + 483180 6 Network 0x0000000196952000 0x00000001968dc000 + 483328 7 libswiftCore.dylib __swift_release_dealloc + 56 8 libswiftCore.dylib bool swift::RefC
1
0
148
Feb ’26
Question about Unlisted App direct link behavior
Hello, I am planning to distribute my iOS app as an Unlisted App. I would like to confirm the following: If users access the standard App Store URL in the format below: https://apps.apple.com/app/idXXXXXXXXXX Will users be able to reach the Unlisted app’s App Store product page via this URL? Or is the specific Unlisted distribution link generated by App Store Connect required for access? My goal is to ensure that in-app update guidance directs users to the correct App Store page. Thank you for your support.
3
0
124
Feb ’26
Reply to Driver Activation failure error code 9. Maybe Entitlements? Please help
Kevin, First, I wanted to apologize for not replying for a full month, as well as thank you very much for your reply. I was pulled away from this project for a couple weeks, and when I got back I was still spinning my wheels getting the driver installed. I only today found my issue, which wasn't something you could have helped with since I hadn't thought to include the correct context in my original comment. I only found the issue after careful log monitoring in the Console app during the install process as my main installer app was running. It turns out that my bundle ID was too long. It was 67 characters and, apparently the maximum is 63. Seems like an arbitrarily short max in this day and age, and you'd think both XCode and the Developer Portal would catch that, but that's what it was. When I redid my bundle IDs more succinctly (and all my permissions on the Apple Developer Portal), I was able to successfully install/register/enable the driver. I have granted it permission in System Settings, it shows up u
Topic: App & System Services SubTopic: Drivers Tags:
Replies
Boosts
Views
Activity
Feb ’26
Reply to macOS 26.4 Beta: built-in keyboard events no longer reach DriverKit virtual HID layer – ecosystem-wide breakage
macOS 26.4 Beta appears to have changed how built-in MacBook keyboard events are routed through IOHIDSystem. Third-party virtual HID devices loaded via DriverKit no longer receive events from the built-in keyboard. As a small side note here, I have no idea why anyone is using DriverKit to create virtual HID devices. CoreHID provides its own virtual device API which, as far as I can tell, should be able to do everything you could do with a virtual device created through DriverKit. It's possible I've overlooked some limitation (and, if so, please let me know!) but as far as I can tell a number of products have chosen a much more difficult implementation without any real benefit. https://developer.apple.com/documentation/corehid/hidvirtualdevice External keyboards are unaffected. This is already confirmed across multiple users: I'd normally ask you to file a bug on this but the engineering team is aware of the issue, so I don't think additional bugs are necessary in this particular case. https://github.
Replies
Boosts
Views
Activity
Feb ’26
Reply to Can't get USBSerialDriverKit driver loaded
Found the solution it seems to be missing CFBundle... keys even though Xcode auto generated parts of it and then it thought its a no code dext. Next problem it has an included embedded provisioning profile but the console shows its missing the entitlement that is included in the embedded provisioning profile...
Topic: App & System Services SubTopic: Drivers Tags:
Replies
Boosts
Views
Activity
Feb ’26
In-App Purchases section on App Version page to link IAPs
I have 6 In-App Purchases configured for my app (4 consumables, 2 non-consumables). They all show Waiting for Review status in the In-App Purchases section of App Store Connect. However, when I go to my app's version page (App Store tab → scroll through the version metadata), I cannot find an In-App Purchases section anywhere to link these IAPs to my app submission. I've scrolled through the entire page - I see Screenshots, Description, Keywords, Build, App Review Information, etc. - but no IAP section with a + button to add my products. When testing via TestFlight with a sandbox account, the app shows Store is currently unavailable - I believe this is because the IAPs aren't properly linked to the app. What I've verified: Paid Applications agreement is active All 6 IAPs have status Waiting for Review Product IDs match between my code and App Store Connect Sandbox tester account is configured with correct region Build is installed via TestFlight My question: Where exactly should the In-App P
Replies
0
Boosts
0
Views
58
Activity
Feb ’26
Reply to Question about Unlisted App direct link behavior
Yes, users will be able to reach your Unlisted app's App Store product page using the provided URL. The unlisted app URL can be found in App Store Connect -> Pricing and Availability -> App distribution Methods
Replies
Boosts
Views
Activity
Feb ’26
Can't get USBSerialDriverKit driver loaded
I am writing a DriverKit driver for the first that uses the USBSerialDriverKit. The driver its purpose is to expose the device as serial interface (/dev/cu.tetra-pei0 or something like this). My problem: I don't see any logs from that driver in the console and I tried like 40 different approaches and checked everything. The last message I see is that the driver get successfully added to the system it is in the list of active and enabled system driver extensions but when I plug the device in none of my logs appear and it doesn't show up in ioreg. So without my driver the target device looks like this: +-o TETRA PEI interface@02120000 | { | sessionID = 268696051410 | USBSpeed = 3 | UsbLinkSpeed = 480000000 | idProduct = 36886 | iManufacturer = 1 | bDeviceClass = 0 | IOPowerManagement = {PowerOverrideOn=Yes,DevicePowerState=2,CurrentPowerState=2,CapabilityFlags=32768,MaxPowerState=2,DriverPowerState=0} | bcdDevice = 9238 | bMaxPacketSize0 = 64 | iProduct = 2 | iSerialNumber = 0 | bNumConfigurations = 1 | UsbDev
Replies
6
Boosts
0
Views
219
Activity
Feb ’26
Customer reviews missing app version and lastModified in API
The App Store Connect API specification states that a customer review includes a rating, a title, a body, a reviewer nickname, a creation date, a territory and a response. Unfortunately, it does not provide information on the app version that was reviewed or whether it was edited after a response was posted (or at least when it was last updated). In order to retrieve all reviews including the app version, you first need to fetch all versions of an app, and then fetch all reviews per version. This results in a lot of unnecessary requests, particularly when there are very few to no reviews for a version. Furthermore, determining if or when a review has been updated by a customer is simply not possible via the API. As these informations are available in the App Store Connect UI for all reviews, I would appreciate it if they could be added to the API as well.
Replies
1
Boosts
0
Views
135
Activity
Feb ’26
App Store Connect – No verification or response for production release
Hi everyone, I’m having an issue with App Store Connect regarding the production release of my app. I submitted my app and contacted App Store Connect support because I haven’t received any verification or confirmation to proceed with the production release, but I still haven’t received any response. It has been over two weeks since I first contacted them. According to Apple’s documentation, support responses usually take around 48 hours, so I’m a bit concerned. My app is currently not moving forward to production, and I don’t see any clear indication of what is missing or if additional action is required from my side. I’ve checked App Store Connect notifications and my email (including spam), but there’s nothing. Has anyone experienced a similar situation recently? Is there a recommended way to escalate this issue (specific support category, phone call, or another process)? Any help or advice would be greatly appreciated. Thank you!
Replies
0
Boosts
0
Views
28
Activity
Feb ’26
Reply to Notarization Always Fails, Now Stuck at Max Certificates, Can't Delete
[quote='877556022, mbisque, /thread/816956?answerId=877556022#877556022, /profile/mbisque'] I am unable to revoke existing Developer ID Installer Certificates. [/quote] Right. Revoking a Developer ID certificate is a big deal because its stops existing products from running. You should only do that if the key is compromised. Quoting The Care and Feeding of Developer ID If you believe that your private key has been compromised, follow the instructions in the Compromised Certificates section of Developer > Support > Certificates. I don’t believe that’s the case here. So you have two choices. The one I recommend is that you manually recover the private key associated with one or more of your Developer ID certificates, which will give you a signing identity that you can use to sign your software. The Care and Feeding of Developer ID explains various strategies for this. And once you do that, intentionally back up the signing identity so that you don’t run into this problem again in the future. The
Replies
Boosts
Views
Activity
Feb ’26
Reply to Cannot get WiFi SSID inside launchctl agent
Thanks for all the extra info. I have a couple of comments. [quote='877572022, dolfs, /thread/816619?answerId=877572022#877572022, /profile/dolfs'] I cleaned everything out manually. [/quote] How exactly? I try to avoid testing this stuff on my development machine because the constant build / run / debug cycle exposes edge cases that are rarely seen on normal user machines. I explain my standard approach for this sort of testing in Testing a Notarised Product. It’s discussing a different technology, but the general approach will work here. IMPORTANT Most VM apps don’t virtualise Wi-Fi, so you won’t be able to test the Core WLAN side of this. But you can test the Core Location side, and I think that’s what’s key here. [quote='877571022, dolfs, /thread/816619?answerId=877571022#877571022, /profile/dolfs'] Agent requests location authorization [/quote] Have you tried requesting location authorisation from the container app? That should work because the app is just a normal GUI application. And I’m hopin
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Feb ’26
Reply to Network is not working when upload smb using NEFilterDataProvider in macOS
I’m sorry I missed your reply [1]. The came up today in a different thread and I encourage you to bounce over there. Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com [1] The DevForums platform has ongoing issues with notifying folks of updates on threads. A few months back we fixed one of the more serious issues. However, this thread was before then, so it’s possible that I missed the update because of that. It’s also possible that I fumbled something myself )-:
Replies
Boosts
Views
Activity
Feb ’26
Reply to Developer Program enrollment still pending after payment
Apple Developer Payment Issue (India – UPI + Developer App Case) Sharing this in case it helps another founder avoid confusion. I was trying to purchase the Apple Developer Program under my company Apple ID using the Apple Developer App on my iPhone. Inside the Developer App, I was correctly logged in using my company Apple ID. When I initiated the ₹8,700 payment using UPI: The UPI auto-renew mandate failed. The app then prompted me to complete the payment using Apple Account balance (Apple Wallet). I proceeded with the payment. The transaction was successful. However, the ₹8,700 was credited to my personal Apple ID’s Apple Account balance, not the company Apple ID. Why This Happened Even though I was logged into the Developer App with my company Apple ID, in my iPhone Settings, my personal Apple ID was signed in. When the payment was processed to Apple Wallet, it was credited to the Apple ID logged in at the device level (Settings) — not the Apple ID inside the Developer App. To verify this, I checked: Setti
Replies
Boosts
Views
Activity
Feb ’26
Reply to Apple Developer Program Membership Fee Deducted but Not Reflected in Account
Apple Developer Payment Issue (India – UPI + Developer App Case) Sharing this in case it helps another founder avoid confusion. I was trying to purchase the Apple Developer Program under my company Apple ID using the Apple Developer App on my iPhone. Inside the Developer App, I was correctly logged in using my company Apple ID. When I initiated the ₹8,700 payment using UPI: The UPI auto-renew mandate failed. The app then prompted me to complete the payment using Apple Account balance (Apple Wallet). I proceeded with the payment. The transaction was successful. However, the ₹8,700 was credited to my personal Apple ID’s Apple Account balance, not the company Apple ID. Why This Happened Even though I was logged into the Developer App with my company Apple ID, in my iPhone Settings, my personal Apple ID was signed in. When the payment was processed to Apple Wallet, it was credited to the Apple ID logged in at the device level (Settings) — not the Apple ID inside the Developer App. To verify this, I checked: Setti
Replies
Boosts
Views
Activity
Feb ’26
App Crashes on iOS 26 in Network.framework / boringssl – objc_release & memory corruption
Hello Apple Support Team, We are seeing a production crash on iOS 26 devices that appears to originate from Apple system frameworks rather than application code. 1. Crash Details OS Version: iOS 26.x App built with: Xcode 16 Devices: Multiple models (not device-specific) Exception Type: SIGSEGV SEGV_ACCERR Fault Address: 0x0000000000000100 Crashed Thread: 4 (network background queue) Crash trace summary: Last Exception : 0 libobjc.A.dylib _objc_release_x8 + 8 1 libboringssl.dylib _nw_protocol_boringssl_deallocate_options + 92 2 Network 0x000000019695207c 0x00000001968dc000 + 483452 3 libswiftCore.dylib __swift_release_dealloc + 56 4 libswiftCore.dylib bool swift::RefCounts >::doDecrementSlow<(swift::PerformDeinit)1>(swift::RefCountBitsT<(swift::RefCountInlinedness)1>, unsigned int) + 152 5 Network 0x0000000196951f6c 0x00000001968dc000 + 483180 6 Network 0x0000000196952000 0x00000001968dc000 + 483328 7 libswiftCore.dylib __swift_release_dealloc + 56 8 libswiftCore.dylib bool swift::RefC
Replies
1
Boosts
0
Views
148
Activity
Feb ’26
Question about Unlisted App direct link behavior
Hello, I am planning to distribute my iOS app as an Unlisted App. I would like to confirm the following: If users access the standard App Store URL in the format below: https://apps.apple.com/app/idXXXXXXXXXX Will users be able to reach the Unlisted app’s App Store product page via this URL? Or is the specific Unlisted distribution link generated by App Store Connect required for access? My goal is to ensure that in-app update guidance directs users to the correct App Store page. Thank you for your support.
Replies
3
Boosts
0
Views
124
Activity
Feb ’26