Search results for

missing package product

50,211 results found

Post

Replies

Boosts

Views

Activity

Reply to Issue with the ApplePay SSL server certificate
Hi, we have found and resolved the issue. The problem was that we used only the leaf certificate to initialize the ssl comunication with applepay, and that caused the error in the majority of the transactions on our production environment. Note that this configuration was working until June 26th 2025, we don't know what happened/changed after that date. The solution was to configure and use the other 2 ssl certifcates (root and intermediate) into our .pem file. Claudiu.
Sep ’25
Issue with the ApplePay SSL server certificate
Hi support, Since June 26th 2025 we are experiencing an issue with the ApplePay SSL server certificate installed on our servers in Production environment. We are facing an exception error during the initializing of a payment session while calling the url: https://apple-pay-gateway.apple.com/paymentservices/startSession The exception is Untrusted Server Certificate Chain: javax.net.ssl.SSLHandshakeException: java.security.cert.CertificateException: Untrusted Server Certificate Chain       at sun.security.ssl.Alerts.getSSLException(Alerts.java:192)       at sun.security.ssl.SSLSocketImpl.fatal(SSLSocketImpl.java:1915)       at sun.security.ssl.Handshaker.fatalSE(Handshaker.java:306)       at sun.security.ssl.Handshaker.fatalSE(Handshaker.java:300)       at sun.security.ssl.ClientHandshaker.serverCertificate(ClientHandshaker.java:1577)       at sun.security.ssl.ClientHandshaker.processMessage(ClientHandshaker.java:213)       at sun.security.ssl.Handshaker.processLoop(Handshaker.java:1010)       at sun.s
2
0
161
Aug ’25
Navigation Title no longer showing for first Tab in iOS/iPadOS 26
Navigation Title no longer showing for first Tab in iOS/iPadOS 26 (Directives) in my app Starship SE Corps when running is Xcode 26 simulator and on iPad device itself running iPadOS 26 beta. Launch app Notice Navigation Title “Directives” is missing from top tab in Sidebar and Floating Tab View (iPad) and TabView (iOS). Navigate to other tabs and Navigation Titles appear as expected. Worked fine (as expected) in iOS/iPadOS 18.5, but broken in iOS/iPadOS 26. Reference Feedback: FB17987650
9
0
338
Aug ’25
Pkg installation package uploaded to macstore email prompt ITMS-90296
Project Background: I developed a Mac project using Electron and VSCode Successfully uploaded the packaged pkg using Transporter, However, I will receive an email informing me that there are some issues with the project: ITMS-90296: App sandbox not enabled - The following executors must include the 'com. apple. security. app sandbox' entitlement with a Boolean value of true in the entitlement property list: [[com. electron. iflyrecclient. pkg/Payload/iFlytek Listen. app/Contents/MacOS/iFlytek Listen]] ITMS-90886: 'Cannot be used with TestFlight because the signature for the bundle at' iFlytek hears. app 'is missing an application identifier but has an application identifier in the provisioning profile for the bundle.' Bundles with application identifiers in the provisioning profile are expected to have the same identifier signed into the bundle in order to be eligible for TestFlight.' Here is my packaging process: Generate an app using the electron packager
2
0
599
Nov ’24
Reply to SMAppService Sample Code seems broken
[quote='857742022, KirkBeamedUp, /thread/799910?answerId=857742022#857742022, /profile/KirkBeamedUp'] I have noticed that launchd is changing my status to 78 [/quote] This is EX_CONFIG. In this context it usually means that there’s something broken in your launchd property list. A common example of this is that the path to the executable is incorrect. [quote='857559022, KirkBeamedUp, /thread/799910?answerId=857559022#857559022, /profile/KirkBeamedUp'] I only update the OS when a machine dies [/quote] Fair enough. But it does limit my ability to help you, because it’s not easy for me to test things on such an old OS release. I have macOS 14, 15, and 26 (RC) VMs lying around. I can set up a macOS 13 VM, but it’s hard to do because I’m travelling right now. Which is actually relevant here. I believe you can virtualise macOS 15 on top of macOS 13, and that’s a good option in this case, and also a good thing to have handy anyway. After all, your users are going to run your product on macOS 15, so you wann
Sep ’25
Missing INITIAL_BUY notification for a single user (App Store Server Notification V2)
Hi all, We’re implementing in-app subscriptions in our iOS app using App Store Server Notifications V2 in the production environment. Everything is generally working well — we receive notifications such as DID_CHANGE_RENEWAL_STATUS, CANCELLATION, etc., and we log all incoming notifications into our own database. However, we've encountered a single case where the INITIAL_BUY notification was not received for a specific user. Interestingly, we did receive the later notifications (DID_CHANGE_RENEWAL_STATUS and CANCELLATION) for that same user. Here is our setup: App Store Server Notifications V2 Notification endpoint is stable and functioning normally (receives and logs other notifications) Notifications are reliably stored in our database The issue occurred only once for one user Environment: Production We've already contacted Apple Developer Support, but were informed that this issue is out of scope for direct support, and were directed to the Developer Forums. Our questions: Under what condi
2
0
70
Sep ’25
Reply to Missing INITIAL_BUY notification for a single user (App Store Server Notification V2)
Subject: Follow-up on missing INITIAL_BUY notification (transactionId: XXX) Hi, thank you very much for your support. I’m following up regarding the missing INITIAL_BUY notification we encountered. We attempted to use the Get Notification History API to verify whether the notification was sent for the relevant transactionId. However, the transaction took place more than 180 days ago, so the API does not return any data for that time range. We’ve also double-checked our server logs and found no record of receiving a SUBSCRIBED notification with subtype=INITIAL_BUY. That said, we did receive subsequent notifications (such as DID_CHANGE_RENEWAL_STATUS and CANCELLATION) for the same user, and also received INITIAL_BUY notifications for other users without any issues. Our system appears to have been fully operational at the time and was likely processing all other notifications correctly. If there's any other way to confirm whether this notification was sent — or if you're able to check on your e
Sep ’25
Reply to Can I Exporting a Developer ID PacketTunnelProvider Plugin?
My plugin packaged the following path: ./UCTunnel.app/Contents/Library/SystemExtensions/org.uc.UCTunnel.UCPacketTunnel.systemextension/Contents/MacOS/org.uc.UCTunnel.UCPacketTunnel And I use the System Network Extension XCode Template with a main.m and PacketTunnelProvider.m int main(int argc, char *argv[]) { @autoreleasepool { [NEProvider startSystemExtensionMode]; } dispatch_main(); } @implementation PacketTunnelProvider - (void)startTunnelWithOptions:(NSDictionary *)options completionHandler:(void (^)(NSError *))completionHandler { // Add code here to start the process of connecting the tunnel. completionHandler(nil); } - (void)stopTunnelWithReason:(NEProviderStopReason)reason completionHandler:(void (^)(void))completionHandler { // Add code here to start the process of stopping the tunnel. completionHandler(); } - (void)handleAppMessage:(NSData *)messageData completionHandler:(void (^)(NSData *))completionHandler { // Add code here to handle the message. } - (void)sleepWithCompletionHandler:(void
Sep ’25
Reply to Can I Exporting a Developer ID PacketTunnelProvider Plugin?
It’s better to reply as a reply, rather than in the comments; see Quinn’s Top Ten DevForums Tips for this and other titbits. I already sign with the system extension OK. But I’m not asking how you signed it, I’m asking how you packaged it. Is the extension an app extension (.appex) or a system extension (.systemextension)? If you’ve packaged it as an appex, your only valid distribution channel is the Mac App Store. You won’t be able to directly distribute it using Developer ID signing. Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
Sep ’25
ICEcard app closes when try to Face Scan via app
ICEcard app is Emergency as a Service platform. One of the key feature is to know about primary info, health info, or in case missing child , elderly using Face scan of registered user of app via another registered user of ICEcard app. App was working fine but last 2-3 week back got issue reported of app getting closed as soon Face scan option is selected. to simulate issue > register > open face scan icon at bottom home screen> select any of option accident or health issue or information >> app closes immediately. Android app is working fine. link of app store. https://apps.apple.com/in/app/ice-card-app/id6736453602 android link for reference https://play.google.com/store/apps/details?id=com.rannlab.ice_card.ice_card&pcampaignid=web_share
13
0
123
Sep ’25
Reply to hidesBottomBarWhenPushed in iOS 26
Hi team, I found another werid issue in iPad OS 26 only. I can easily reproduce it with a simple example app even in iPadOS 26 RC. I've submitted a feedback FB20215332, could you have a look? Thanks! We have a UITabBarController which contains two tabs. The first tab is a UINavigationController which includes ViewControllerA and ViewControllerB The second tab is just a simple UIViewController ViewControllerC We set the self.traitOverrides.horizontalSizeClass = .compact in TabBarController because we don't want to show the new style of tab bar. We set the hidesBottomBarWhenPushed to true for ViewControllerB when pusing from ViewControllerA because we don't want the tab bar to show in the navigation flow. Also, there is a button in ViewControllerB and it can navigate to ViewControllerC. However, when we tap the button in ViewControllerB, it did navigate to ViewControllerC but the TabBar is missing and at this point we have to kill the app, otherwise we cannot do anything. As I mentioned above, this iss
Topic: UI Frameworks SubTopic: UIKit
Sep ’25
xcode changes dsym bundle identifier
I have included a number of plugins with my app. If I get xCode to compile a dsym file, it changes the identifier from x.y.z to com.apple.xcode.dsym.x.y.z When I try to upload it, it gives the error Invalid Bundle. The application bundle may not contain tools or frameworks provided by Apple, or using bundle identifiers in the 'com.apple.' namespace. Invalid bundle: [hk.cinder.Monitor2.pkg/Payload/Monitor2.app/Contents/Resources/Modules/Release/BIS.bundle.dSYM], with bundle identifier 'com.apple.xcode.dsym.x.y.z.BIS'. (ID: 3c2029d4-93fb-48fe-8ec0-c2c28a810167) Anyone got any idea what is going on?
3
0
64
Sep ’25
Reply to App Store Connect Error ITMS-90058: This bundle is invalid
It’s part of our own framework, not a third-party dependency. For some reason, the DTPlatformName key is missing from the framework’s Info.plist, which caused the ITMS-90058 error during validation. We resolved this by adding DTPlatformName = iphoneos to the framework’s Info.plist, and the build is now passing App Store checks. Right, you won't find this key in the source Info.plist file for any target in Xcode, because it's expected to be generated as part of the build. The value can vary, as a framework can be built for different platforms, so hardcoding this value into your Info.plist isn't the right long-term solution. To figure out the right solution, are you able to share a stripped down version of your framework project with us, either through a link here to somewhere else on the Internet, or if you need to keep it private, you can open a code-level support request to get me a private copy? The stripped down version here is that I only need to see something that builds, so you could delete mos
Sep ’25
Installer package is terminated after 600 seconds
Hi, I have an installer package that runs a postinstall script. The script can take a long time to complete, as one thing it does is copy about 10-30 GB of files using the rsync tool. We noticed on macOS 15 that the installer would fail almost exactly 10 minutes after it started. Looking in the /var/log/install.log, I see a message like this: 2025-07-01 12:54:32-07 Work-M1 package_script_service[21562]: PackageKit: Terminating PKInstallTask(pid:21573). Task has exceeded its 600 seconds of runtime. This does not happen in my testing on macOS 12 (Monterey) I have a few questions about this: A) Is this documented, and which OS introduced this? B) Is there a way a developer can extend or disable the time limit via a setting in the installer package. Or if not, is there a way end end user can disable it temporarily on their system? Thanks, Andrew
4
0
131
Sep ’25