missing package product

42,950 results found

Post

Replies

Boosts

Views

Activity

Reply to Link to a Precompiled Static C Library in a Swift Library Package
Thank you so much, Quinn! I genuinely owe you for how often you unblock my from complicated issues :) I agree that it would be best to let Xcode do the heavy lifting, and perhaps I will investigate that in the future - for now, since I already have a build pipeline set up for OpenSSL and Curl, I went with your suggestion of looking at what Xcode does and making a similar structure. I can confirm that once I defined the module map within the platform-specific frameworks I can now use the libraries in Swift, both a Swift framework and a Swift package.
2w
Reply to Inquiry Regarding File Scan Permissions for Anti-Malware Feature Implementation
The Full Disk Access authorization exists to facilitate the sort of thing you're describing. It disable the user privacy protection that's blocking access above. You can find the Full Disk Access setting in System Settings > Privacy & Security > Privacy. If I configure a LaunchDaemon using “SMAppService”, will the LaunchDaemon also share the “Full Disk Access” permission of the main app? Two answers to that: Yes. Part of the reason this API exists is that keeping the all of the app components inside the app bundle makes it easier to ensure that TCC permission can be correctly inherited, including FDA. Qualified but. Bugs are always possible, particularly with components that are executing outside the standard execution flow (like a LaunchDaemon running as root). If your app relies on FDA, then you should also consider how you'll handle access failures in a clean/graceful way. Keep in mind that there are many reasons access can fail (for example, Endpoint Security extensions or system external permis
2w
AppIntents don't show up in Shortcuts app when in SPM package
Hi there, I successfully created an AppIntent for our app, and when I had it in the same target as our main app it showed up fine in the shortcuts app. Then I realized that many of the new System Control widgets introduced in iOS 18 (e.g. lockscreen, control center) live in the widget extension target, but they also need to reference that same AppIntent. So to fix this, I thought I'd migrate out the code into it's own SPM package that both the WidgetExtension and the Main App processes can reference. However, after doing that and rebuilding, the intent no longer shows up in the Shortcuts app. Furthermore, my AppShortcutsProvider class now has this error when trying to define the list of appShortcuts: App Intent should be in the same target as AppShortcutsProvider Is this intended, and if so, how do we reference the same AppIntent across multiple targets?
2
0
189
2w
Reply to Music displaying in Apple Watch SE
Break this down a little for us: What is auto launch? And where are you turning it off? Where is music being displayed on your Watch, and when? Why would turning off something called auto launch stop Music being displayed somewhere on a Watch? These two things don't seem related. Also... These are the Developer Forums, where developers of apps for Apple's platforms ask each other for hints and tips on coding. These forums are NOT where Apple's actual developers chat about stuff. Your question is more of a product support one, so I'd suggest you ask it over at the Apple Support Forums. Thanks.
2w
Reply to How much does it cost to develop an app like Airbnb?
If you want to know the cost of building an app like Airbnb then there are multiple factors involved like features that you want to include, size of the app, complexity, technology involved, and a lot more. But remember that building an app requires a careful approach and if you try to do it by yourself then you may not only lose your customers but hamper your business reputation in the long run. Speaking of the cost of a dedicated mobile app development company like EitBiz, it may start from $5000 and can go up to $50,000. But don’t just blindly choose, ensure you go through their portfolio here: https://www.eitbiz.com/portfolio and make a decision. Furthermore, you can even visit their website to learn more about their mobile app development services.
2w
Subscription Unavailable - Strange Behavior with StoreKit
I added my first subscription to my app using StoreKit's SubscriptionStoreView. Everything worked as expected in the debug environment and also in TestFlight. So I submitted my app and subscriptions to App Store Connect, got everything Approved and released. After updating my app through App Store and checking the Subscription View, it just says Subscription Unavailable. The subscription is unavailable in the current storefront. I waited around 3 days and still getting the same message. Now the very strange behavior starts. I went to App Store Connect, I made and edit to the subscription description, saved, removed the edit, saved, and submitted to review. 15 minutes later the subscriptions appear in my app and everything works as expected. After getting the edit approved, the Subscription View in my app again only showed the message Subscription Unavailable. The subscription is unavailable in the current storefront. No user is able to see the subscriptions anymore, even though it worked as expected before th
9
0
456
2w
Test Flight build does not show Purchase Confirmation popup for IAP.
Hi, We are seeing a small issue on our app with a subscription in app purchase and wondering whether this should be a cause for concern. We have 2 subscription based IAPs and 1 consumable within the app. I recently noticed that after buying one of the subscriptions and cancelling it if I try to buy the product again, it skips the purchase flow on our Test Flight builds. I added some logs, and it appears that Product.purchase() returns right away and the resulting transaction also comes back as verified, but the new purchase is not added to current entitlements. I managed to get the flow working after I logged out from my Sandbox account from settings, but after I did another subscription cancellation, I could not purchase the product anymore. This only happens on our Test Flight builds. If I launch the app through Xcode and use a store kit configuration file at launch, I get the purchase popup every time I try to buy the product. It also appears to me that this only happens on a product
0
0
127
2w
iCloud
Foundation APNS APFS GameKit IOUSBHost Swift Packages App Tracking Transparency GameplayKit MetricKit Mobile Core Services Subscriptions App Clips AGL Wallet Watch Connectivity SCSIControllerDriverKit Forums Feedback Force Feedback Control External Graphics Processors Files and Storage . IOBluetooth Community Developer Tools ML Compute FWAUserLib Image I/O Screen Saver Swift Student Challenge Apple Music API Games Discuss games AudioToolbox Xcode. Maps Web Snapshots WatchKit Extensions Accounts Apple Watch. Messages app. CarPlay EventKit and EventKitUI. iOS, iPadOS, watchOS, tvOS, and macOS apps. App Store (FPS). iPad Media Player Exception Handling External Accessory iOS iOS iPhone. Xcode Server Xcode projects. Face ID CloudKit App ID Metal MusicKit StoreKit Test Swift xcselectmacOS SDK Beta WebKit JS APIs. Frameworks Asset Catalog Education and Kids Game Controller Inter-process communication App Review Apple guidelines. Messages SpriteKit vmnet ARKit Automatic Assessment Configuration MetalKitMode
2
0
150
2w
Issue with deep linking in iOS applications
Issue: We are currently experiencing an issue with deep linking in iOS applications when Microsoft Edge is set as the default browser on the device. Users, upon receiving an invitation link in their mail and attempting to open the app (if installed) via the link, encounter a problem where the Edge browser opens the app store as a popover. However, it's important to note that this URL functions correctly with Safari. Attempts So far: The integration of deep linking in iOS has been correctly implemented. I have also verified the Apple App Site Association (AASA), which is deployed on the backend site, facilitating redirection to the application on mobile. Testing the same scenario with other browsers revealed that this link does not work with Chrome, Brave, and Edge, excluding Safari. Reviewing the Deep Link URL, it complies with the safe link policy. Removing the safe link policy from the URL and attempting to open it in Edge and other browsers results in seamless functionality. I have tested the safe link wit
0
0
176
2w
Reply to Using bundled applications(.app file) as daemon/Agent
Approach 1 is deeply unsupported. Don’t do that. Approach 2 is the one I recommend. Indeed, as things currently stand it’s the only way to ship a daemon that uses restricted entitlements. See Signing a daemon with a restricted entitlement. IMPORTANT Apps and daemons are different things. In some situations it makes sense to bundle a daemon in an app-like wrapper, but that doesn’t make it an app. You cannot, for example, call AppKit from a daemon, regardless of how it’s packaged. An variant of approach 2 is to install your daemon using SMAppService. You still have to do that MyDaemon/Content/MacOS/MyDaemon dance, but you can use BundleProgram and do it relative to the root of the containing app’s bundle. Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
2w