Posts

Post not yet marked as solved
1 Replies
385 Views
What happens to individual app clip experience icons after someone installs the full app? Let's say I go to coolrestaurants.com/burgerplace and get the Burger Place app clip experience which is powered by the Cool Restaurants app. Then I go to coolrestaurants.com/tacostand and get the Taco Stand app clip experience. That would mean I have two app clip icons in my recents section in my App Library--one for Burger Place and another for Taco Stand. Now I install the full Cool Restaurants app. What happens to the Burger Place and Taco Stand icons? Do they disappear or do they stay acting as shortcuts to the main Cool Restaurants app? Thanks you!
Posted Last updated
.
Post marked as solved
3 Replies
3.3k Views
I have a problem which includes a dylib inside of a framework. The app builds fine and runs fine, but when I submit it to the store, I get this message.Dear Developer,We identified one or more issues with a recent delivery for your app, "My App Test" 0.1 (17). Please correct the following issues, then upload again.ITMS-90426: Invalid Swift Support - The SwiftSupport folder is missing. Rebuild your app using the current public (GM) version of Xcode and resubmit it.Best regards,The App Store TeamI would love a more in-depth explaination of this rule/rejection from someone at Apple, or any advice from anyone who has encountered this problemThanks!Joe
Posted Last updated
.
Post not yet marked as solved
1 Replies
443 Views
Just add a modifier lazyPop() and you can enable the drag-anywhere-to-dismiss feature you see in apps like Instagram.struct DetailsViewWithLazyPop: View { var body: some View { Text("Lazy pop enabled. Swipe anywhere to dismiss.") .lazyPop() } }Demo gif: https://i.redd.it/iar3buls48241.gifGitHub: https://github.com/joehinkle11/Lazy-Pop-SwiftUII'm thinking about turning it into a Swift Package or Cocopod. If that's something someone wants, let me know.
Posted Last updated
.