Search results for

missing package product

50,214 results found

Post

Replies

Boosts

Views

Activity

Reply to App mysteriously crashing in CFNetwork.LoaderQ queue
Right, sorry. I created this extension: extension URLSession { static var `default`: URLSession { if #available(iOS 18.4, *) { let config = URLSessionConfiguration.default config.usesClassicLoadingMode = false return URLSession(configuration: config) } else { return URLSession.shared } } } And I replaced all URLSession.shared with URLSession.default. Will deploy it to production and get back to you in a few weeks to see if it helped on newer systems. Please correct me if I did something wrong.
Topic: Programming Languages SubTopic: Swift Tags:
Sep ’25
Issues with Push Notifications and Call Implementation in Flutter App on iOS (Debug Works, Production/TestFlight Fails)
Hello Developers, I am currently developing a Flutter application where I am implementing both push notifications (for messages) and VoIP call notifications. The implementation works perfectly fine on Android. However, I am facing issues specifically on iOS in the following scenarios: Terminated State: When the app is terminated on iOS, neither call notifications nor message notifications are received. In the background state, things partially work, but in the terminated state, nothing comes through. Debug vs Production: In Debug mode, everything works as expected (both message and call notifications). Once I release the app to TestFlight (Production), the notifications completely stop working: Message notifications are not delivered at all. Call notifications also fail to appear in terminated state. Configuration Details: I have already configured APNs with .p8 key in Firebase. The required capabilities (Push Notifications, Background Modes → Remote notifications, VoIP, etc.) are enabled in
2
0
70
Sep ’25
Rejection of VPN App for Guideline 4.3(a) - Design - Spam
Hello everyone, We are currently facing a frustrating situation: we are trying to publish an app that enables VPN connection with our platform, which is offered exclusively to our clients. However, our app is being repeatedly rejected under Guideline 4.3(a) - Design - Spam. To clarify, this VPN app is strictly for enterprise use and only operates in specifically provisioned environments. It is not a generic VPN client and cannot function outside of its intended context. Authorship: The entire codebase is original and exclusive. The only third-party dependencies are: WireGuardKit: used for establishing the VPN tunnel (WireGuard protocol). ZIPFoundation: used for compression and decompression of packages. Uniqueness: No other VPN app on the market works with our solution. The only thing in common with some is the use of the WireGuard protocol. Our app includes an agent that reports device information to our platform for security policy evaluation and access control. It uses entirely proprietary authent
3
0
60
Sep ’25
Migrate Widgets from StaticConfiguration to IntentConfiguration
New features in WatchOS 26 with configurable widgets make it more important than ever that apps adopt IntentConfiguration options where applicable. I develop an app with an Apple Watch complication/widget on many many user's Watch faces around the world. I've completed updating my code to support WidgetKit and remove ClockKit. However, I face huge issues adding support for users to configure their widget/complications. If I update a widget to go from StaticConfiguration to IntentConfiguration, even when keeping the kind string the same, the widget disappears from the Watch face. This is an unacceptable user experience meaning I can't proceed with the migration. The problem is users will expect me to offer configuration in the Watch face soon for their widget/complication. Currently this process is done in a sub-optimal way in the app itself. A similar issue exists on iOS where the widget will just freeze indefinitely is migrated. This issue still occurs on the iOS 26 and WatchOS 26 betas. So how to move this
4
0
155
Sep ’25
Reply to Migrate Widgets from StaticConfiguration to IntentConfiguration
For any unfortunate peoples stumbling across this, the issue was not solved in the RC builds of iOS & WatchOS 26. I'm shipping anyway and have had to build in a knowledge base in the app to help users with missing complications. 😞 Not the outcome I wanted and will undoubtedly lead to a lot of emails and negative reviews..... But I have users who expect the latest features so what else can I do.....
Sep ’25
SwiftUI Button with Image view label has smaller hit target
[Also submitted as FB20213961] SwiftUI Button with a label: closure containing only an Image view has a smaller tap target than buttons created with a Label or the convenience initializer. The hit area shrinks to the image bounds instead of preserving the standard minimum tappable size. SCREEN RECORDING On a physical device, the difference is obvious—it’s easy to miss the button. Sometimes it even shows the button-tapped bounce animation but doesn’t trigger the action. SYSTEM INFO Xcode Version 26.0 (17A321) macOS 15.6.1 (24G90) iOS 26.0 (23A340) SAMPLE CODE The following snippet shows the difference in hit targets between the convenience initializer, a Label, and an Image (the latter two in a label: closure). // ✅ Hit target is entire button Button(Button 1, systemImage: 1.square.fill) { print(Button 1 tapped) } // ✅ Hit target is entire button Button { print(Button 2 tapped) } label: { Label(Button 2, systemImage: 2.square.fill) } // ❌ Hit target is smaller than button Button { print(Button 3 tappe
1
0
143
Sep ’25
Dynamically changing app icon
I have a Qt desktop app that I was shipping to users as a dmg on macOS. But now I'll need to kind of rebrand the app to different users, that rebranding involves changing the name and the icon of the app I'm not sure how feasible that is on macOS but here's what I'm thinking: First I'll include all apps for all brands inside the app resources, and instead of shipping the app directly, I will ship and installer (either .pkg or a custom made installer app) that will be responsible for downloading the main app and also setting some environmental variables somewhere so that I can choose the icon from the resources based on the env var values. And then either change the app icon and name from the installer itself, or implement something inside the app that makes it change the icon and name on launch (both icon in finder and in dock) but maybe one of those methods (or both) will break the codesign/notarization of the app so I want to avoid that too I'm not sure if someone has done this before or how feasib
2
0
196
Sep ’25
Reply to LLDB Cannot Load ODBC Driver Due to Sandbox Restrictions - How to Debug
[quote='800260021, danilabagroff, /thread/800260, /profile/danilabagroff'] I'm developing a macOS console application [/quote] “Console application” isn’t a term we use on Apple platforms. An application is, by definition, something the user double clicks in the Finder, shows up in the Dock, has a menu bar, and so on. I’m presuming that you’re building a command-line tool, something that the user runs from Terminal, or is run by the system as, say, a launchd daemon. Please let me know if that’s not the case. [quote='800260021, danilabagroff, /thread/800260, /profile/danilabagroff'] What is the recommended approach for debugging applications that need to load dynamic libraries? [/quote] There are a number of factors in play. I’ll come back to that later. But first I want to dig into your log message: [quote='800260021, danilabagroff, /thread/800260, /profile/danilabagroff'] Error Details When running the application through LLDB, I get this sandbox denial in the system log… logd_helper(587) [/quote] Look at th
Sep ’25
Reply to A few questions about allowed-os-versions and os-version in Distribution Definition files
[quote='800331021, packagesdev, /thread/800331, /profile/packagesdev'] Also why is there a tag for InstallerJS and not one for Installation in the Developer Forums? [/quote] Again with the why questions (-: Seriously though, I agree that there should be a tag for Mac installer packages. Although I’d probably call it Mac Installer rather than just Installation, because otherwise it’ll get flooded with iOS stuff. I can’t fix this immediately, but I’ve put it on my to-do list so that it doesn’t slip through the cracks. [quote='800331021, packagesdev, /thread/800331, /profile/packagesdev'] Has this element always worked correctly in the past? [/quote] Clearly no, in that you’re seeing it fail on 10.14. As to what you should do about this, it depends on whether you actually need to support 10.14 or earlier systems? [quote='800331021, packagesdev, /thread/800331, /profile/packagesdev'] Generally speaking, this documentation is missing examples for a lot of the elements. [/quote] It’s also in the D
Sep ’25
Reply to Dynamically changing app icon
This is is going to be tricky. An app’s icon is part of its bundle, and thus modify the icon will break the seal on the code signature. You don’t want to leave the user with an app with a broken code signature because sooner or later Gatekeeper look at the app, notice the broken signature, and kvetch. Now, what you could do is something like: Build, sign, and notarise all the variants of your app. From those variants, construct an installer that only contain one primary variant of your app and the diffs for all the other variants. Have that installer install the primary and then apply the relevants diffs. The end result is an app that’s correctly signed and notarised, and thus unlikely to hit notary problems. However, doing this is quite a bit of work. The key problems is that critical parts of the code signature are stored within the app’s main executable Mach-O image. If you store the diffs as a list of files, you’ll need N copies of the main executable, which presumably is quite large. There are ways you m
Topic: App & System Services SubTopic: General Tags:
Sep ’25
Sales & finance report API not returning Content-Disposition (File Name) in Response Header
We have been using apple Sales report API (https://api.appstoreconnect.apple.com/v1/salesReports) to fetch the sales report. It has been running for over a year without any issues. But recently Starting JAN 15. The API is not returning Content-Disposition header which usually contains Filename additionally, x-report-filename which also contains the filename information is missing. We are not able to save the files without the filename. We do not see any update to the Sales Reports API in the documentation. Is there any reason for this sudden change? Is there any alternative to get the name from the API or will this be fixed?
1
0
405
Jan ’25
Extend of notification content
In iOS 26, I can check the notification that arrives to the user when the AirPods or Apple Watch is fully charged. When tap the notification, notification only expands and does not include actions such as moving to an app. I checked the documents of UserNotification and UNNotificationServiceExtension, but I couldn't find what I wanted. I can expand by long-tapping as default, but I'm looking for a way to expand it without entering the app when I tap the notification. I wonder if there is an API that I missed or if it's not publicly supported. thank you for your support.
2
0
90
Sep ’25