Thanks for the post. I don’t think you have provided much information to be able to help you. Can you provide a focused sample of how you use App Clips? Are you using Xcode, can you create a new sample project that reproduces the issue using the steps below?
App Clips are built as a separate target within your existing iOS app project.
- Open your project in Xcode.
- Go to File > New > Target.
- Select App Clip under the iOS tab.
- Name your App Clip and ensure it is embedded in your main application target.
App Clips rely heavily on Universal Links to securely verify the relationship between your website and your app.
- Add the Associated Domains capability to both your main app target and your App Clip target.
- Add your domain using the
appclips: prefix. Example: appclips:example.com - Update the
apple-app-site-association (AASA) file on your web server to include an appclips dictionary.
{
"appclips": {
"apps": ["<TEAM_ID>.<BUNDLE_ID>.Clip"]
}
}
Please follow this great documentation: https://developer.apple.com/design/human-interface-guidelines/app-clips
and
https://developer.apple.com/videos/play/wwdc2021/10012/
Thanks
Albert Pascual
Worldwide Developer Relations.