When creating a new Multiplatform project on Xcode 14 beta and adding a Notification Service Extension Target, compilation fails with:
error build: Your target is built for macOS but contains embedded content built for the iOS platform (Notification.appex), which is not allowed.
This really limits the usefulness of the new multiplatform single target, especially if we cannot incorporate basic extensions.
Is there any way to use single target multiplatform and still have the freedom to add necessary extensions to the app?
Post
Replies
Boosts
Views
Activity
SwiftUI has been steadily improving the individual NavigationView component at each WWDC, but advanced navigation scenarios have yet to be addressed:
Handling deep links
Whole-app programmatic navigation, more than just one level deep (beyond what NavigationLink(selection:) provides)
Custom transitions, similar to what UIViewControllerAnimatedTransitioning can provide
These are fundamental concepts that every modern app faces. I've looked around in the beta docs to no avail; is there anything this year that moves the needle in SwiftUI for advanced navigation?