Search results for

“missing package product”

52,430 results found

Post

Replies

Boosts

Views

Activity

Reply to Getting a basic URL Filter to work
I think I finally did it! I eventually gave up and switched to a different gateway: https://github.com/gruberb/ohttp-gateway Once configured properly, everything started flowing, even from TestFlight (which I hope means that it will be the same from the App Store). Feels kinda unreal that this is actually happening, I had lost hope. Thanks to everyone who helped out!
Mar ’26
Apps stuck in "Waiting for Review" for 23 days due to pending agreements. What happens now?
Hello everyone, I’m currently experiencing a very long review time and wanted to ask for your advice or hear about your experiences. I submitted my two apps for their initial release 23 days ago. Ever since then, they have been stuck in the Waiting for Review status. Yesterday, I realized that my Paid Apps Agreement and Tax Forms (W-8BEN, etc.) were incomplete in App Store Connect. I immediately filled them out, and now all my banking, tax, and agreement statuses are successfully marked as Active. My questions to the community are: Since the agreements are now active, will my apps automatically fall into the review queue, or do I need to trigger something? I submitted an App Review Status contact form to Apple Support today. Should I just wait for their response, or is it better to Remove from Review and resubmit them? (I am afraid of losing my place in the queue). Any insights or similar experiences would be greatly appreciated. Thank you! Best, Berkay
4
0
189
Mar ’26
Network issues in macOS 26.4 (25E5218f)
Since updating to macOS 26.4 developerbeta 2 I've been getting full loss of dns resolution. I am not running a VPN or any network extensions that I am aware of. I'm not sure how to report this in the feedback utility as I cannot find an appropriate category for it. Happy to file it if someone can give an appropriate suggestion - the closest I could see was Wi-Fi but that wanted Wi-Fi logs for the issue, which I do not believe to be needed as this is not a Wi-Fi connectivity issue. Running dig example.com +short nslookup example.com ping example.com Gives the following output 104.18.27.120 104.18.26.120 Server: 10.0.1.1 Address: 10.0.1.1#53 Non-authoritative answer: Name: example.com Address: 104.18.26.120 Name: example.com Address: 104.18.27.120 ping: cannot resolve example.com: Unknown host This shows it's not an issue with my local network and that core networking is working, but something in the mDNSResponder/dns stack of macOS is failing. This causes all apps/browsers that do not implement thei
3
0
297
Mar ’26
Set base price and currency for app package in App Store Connect
For apps, I can select a base price and region (currency) so that prices for other regions adapt automatically, but for app packages I can only set a base price in USD. I just noticed that my app package wasn't visible on the App Store anymore because of an automatic price change which caused its price in USD to become invalid (too low), as it was below the highest app price within the package. Is it intended that I have to monitor price changes and manually correct prices for app packages? I created FB22093289.
0
0
61
Mar ’26
Reply to Trial period & in-app purchase
I'm trying to release an app with this kind of business model right now. Review team is bullying me for my products, asking stupid questions like: Please explain why free trial period is submitted as separated in-app purchase instead of being included in the paid 'Lifetime Unlock' in-app purchase. So tiresome -_-
Mar ’26
Having all types of issues with latest Tahoe version 26.4!!
I'm losing it. I am on the public beta for Tahoe, downloaded most current update yesterday morning, 26.4. Chrome and Firefox aren't loading, and Mac mail isn't working right. Safari seems to be totally fine. I've done all types of troubleshooting, going crazy. Anyone else had issues with this update? It's almost like the connectivity got all screwed up.
2
0
134
Mar ’26
App group broken on Sequoia
We've got an in-house Swift macOS desktop app with a FileProvider extension, which has been working fine on various machines up through Sonoma (and still does). We've just installed it on a Sequoia machine, and on it the FileProvider extension has lost the ability to access the shared app group. It can neither log to the Group Containers folder under ~/Library, nor access the pipe to the main app. The group name is formatted as group.XXXXXXXXXX.com.orgname.appname in both targets. I'm not sure why it combines the iOS and macOS conventions, with both the group prefix and the teamIdentifier one -- it was first built some time before the point in 2025 when macOS supported iOS-style groups -- but again, it's been working. For the record, The provisioning profile for EMPFileProvider has the App Groups capability enabled, and the App Groups capability is present in both build targets in Xcode. The existing group identifier is registered on the website; I've also manually registered the team-ID-less group n
8
0
308
Feb ’26
Reply to Using .mp3 files in Swift Playgrounds project
I had to explicitly update the Package.swift file by adding the resources key. For example, I added Resources so I would have to create a Resources/ folder, add my .mp3 to that folder, and it should work. Read more in article Bundling resources with a Swift package targets: [ .executableTarget( name: AppModule, path: ., resources: [ .process(Resources) ] ) ],
Topic: Programming Languages SubTopic: Swift Tags:
Feb ’26
presentOfferCodeRedeemSheet Not showing product icon
Hi - Using storekit2 on ios26.2 and using presentOfferCodeRedeemSheet to allow users to leverage Offer Codes. The codes work (sandbox and production), however on the confirmation view that shows Redeem Special Offer, while my App Icon is properly displayed up top, the associated product subscription image is missing and I see a grey App Store image/icon instead. I do successfully see the associated subscription and pricing to the right. My subscription product images are already reviewed/approved and have been live for a number of weeks. I see this in Sandbox and Production (with a live customer sending me the phone screenshot). PS, my product icons/logos all show up successfully during normal checkout in sandbox/production, this only occurs on Offer Code Redemption views.
2
0
95
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:
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
Reply to Getting a basic URL Filter to work
I think I finally did it! I eventually gave up and switched to a different gateway: https://github.com/gruberb/ohttp-gateway Once configured properly, everything started flowing, even from TestFlight (which I hope means that it will be the same from the App Store). Feels kinda unreal that this is actually happening, I had lost hope. Thanks to everyone who helped out!
Replies
Boosts
Views
Activity
Mar ’26
Apps stuck in "Waiting for Review" for 23 days due to pending agreements. What happens now?
Hello everyone, I’m currently experiencing a very long review time and wanted to ask for your advice or hear about your experiences. I submitted my two apps for their initial release 23 days ago. Ever since then, they have been stuck in the Waiting for Review status. Yesterday, I realized that my Paid Apps Agreement and Tax Forms (W-8BEN, etc.) were incomplete in App Store Connect. I immediately filled them out, and now all my banking, tax, and agreement statuses are successfully marked as Active. My questions to the community are: Since the agreements are now active, will my apps automatically fall into the review queue, or do I need to trigger something? I submitted an App Review Status contact form to Apple Support today. Should I just wait for their response, or is it better to Remove from Review and resubmit them? (I am afraid of losing my place in the queue). Any insights or similar experiences would be greatly appreciated. Thank you! Best, Berkay
Replies
4
Boosts
0
Views
189
Activity
Mar ’26
Network issues in macOS 26.4 (25E5218f)
Since updating to macOS 26.4 developerbeta 2 I've been getting full loss of dns resolution. I am not running a VPN or any network extensions that I am aware of. I'm not sure how to report this in the feedback utility as I cannot find an appropriate category for it. Happy to file it if someone can give an appropriate suggestion - the closest I could see was Wi-Fi but that wanted Wi-Fi logs for the issue, which I do not believe to be needed as this is not a Wi-Fi connectivity issue. Running dig example.com +short nslookup example.com ping example.com Gives the following output 104.18.27.120 104.18.26.120 Server: 10.0.1.1 Address: 10.0.1.1#53 Non-authoritative answer: Name: example.com Address: 104.18.26.120 Name: example.com Address: 104.18.27.120 ping: cannot resolve example.com: Unknown host This shows it's not an issue with my local network and that core networking is working, but something in the mDNSResponder/dns stack of macOS is failing. This causes all apps/browsers that do not implement thei
Replies
3
Boosts
0
Views
297
Activity
Mar ’26
Set base price and currency for app package in App Store Connect
For apps, I can select a base price and region (currency) so that prices for other regions adapt automatically, but for app packages I can only set a base price in USD. I just noticed that my app package wasn't visible on the App Store anymore because of an automatic price change which caused its price in USD to become invalid (too low), as it was below the highest app price within the package. Is it intended that I have to monitor price changes and manually correct prices for app packages? I created FB22093289.
Replies
0
Boosts
0
Views
61
Activity
Mar ’26
Reply to Trial period & in-app purchase
I'm trying to release an app with this kind of business model right now. Review team is bullying me for my products, asking stupid questions like: Please explain why free trial period is submitted as separated in-app purchase instead of being included in the paid 'Lifetime Unlock' in-app purchase. So tiresome -_-
Replies
Boosts
Views
Activity
Mar ’26
Having all types of issues with latest Tahoe version 26.4!!
I'm losing it. I am on the public beta for Tahoe, downloaded most current update yesterday morning, 26.4. Chrome and Firefox aren't loading, and Mac mail isn't working right. Safari seems to be totally fine. I've done all types of troubleshooting, going crazy. Anyone else had issues with this update? It's almost like the connectivity got all screwed up.
Replies
2
Boosts
0
Views
134
Activity
Mar ’26
App group broken on Sequoia
We've got an in-house Swift macOS desktop app with a FileProvider extension, which has been working fine on various machines up through Sonoma (and still does). We've just installed it on a Sequoia machine, and on it the FileProvider extension has lost the ability to access the shared app group. It can neither log to the Group Containers folder under ~/Library, nor access the pipe to the main app. The group name is formatted as group.XXXXXXXXXX.com.orgname.appname in both targets. I'm not sure why it combines the iOS and macOS conventions, with both the group prefix and the teamIdentifier one -- it was first built some time before the point in 2025 when macOS supported iOS-style groups -- but again, it's been working. For the record, The provisioning profile for EMPFileProvider has the App Groups capability enabled, and the App Groups capability is present in both build targets in Xcode. The existing group identifier is registered on the website; I've also manually registered the team-ID-less group n
Replies
8
Boosts
0
Views
308
Activity
Feb ’26
Reply to Using .mp3 files in Swift Playgrounds project
I had to explicitly update the Package.swift file by adding the resources key. For example, I added Resources so I would have to create a Resources/ folder, add my .mp3 to that folder, and it should work. Read more in article Bundling resources with a Swift package targets: [ .executableTarget( name: AppModule, path: ., resources: [ .process(Resources) ] ) ],
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
Feb ’26
presentOfferCodeRedeemSheet Not showing product icon
Hi - Using storekit2 on ios26.2 and using presentOfferCodeRedeemSheet to allow users to leverage Offer Codes. The codes work (sandbox and production), however on the confirmation view that shows Redeem Special Offer, while my App Icon is properly displayed up top, the associated product subscription image is missing and I see a grey App Store image/icon instead. I do successfully see the associated subscription and pricing to the right. My subscription product images are already reviewed/approved and have been live for a number of weeks. I see this in Sandbox and Production (with a live customer sending me the phone screenshot). PS, my product icons/logos all show up successfully during normal checkout in sandbox/production, this only occurs on Offer Code Redemption views.
Replies
2
Boosts
0
Views
95
Activity
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