Post

Replies

Boosts

Views

Activity

Reply to iOS26 beta: AppClips are not working properly
Also, I learnt that apple-app-site-association (AASA) file structure has also changed. { "applinks": { "details": [ { "appIDs": ["MYTEAMID.com.example.myApp"], "components": [ { "/": "/*" } ] } ] }, "appclips": { "apps": [ "MYTEAMID.com.example.myApp.Clip" ] } } i.e with respect to my previous AASA file, I had to do the following: instead of paths we need to add components as above. in the applinks we should add the main app bundle id (not the clip's bundle id) removed "apps": [], from the applinks section. Hope this will help someone.
Topic: App & System Services SubTopic: General Tags:
Oct ’25
Reply to App Clips don't work
Also, I learnt that apple-app-site-association (AASA) file structure has also changed. { "applinks": { "details": [ { "appIDs": ["MYTEAMID.com.example.myApp"], "components": [ { "/": "/*" } ] } ] }, "appclips": { "apps": [ "MYTEAMID.com.example.myApp.Clip" ] } } i.e with respect to my previous AASA file, I had to do the following: instead of paths we need to add components as above. in the applinks we should add the main app bundle id (not the clip's bundle id) removed "apps": [], from the applinks section. Hope this will help someone.
Topic: UI Frameworks SubTopic: General Tags:
Oct ’25
Reply to App Clips don't work
Did anyone found a solution? I have a small update, when upgraded to Xcode 26 (instead of Xcode 16), the appclip did not build right away. The reason was Apple has changed how we need to create the .entitlements files. So I had to do the following: <key>com.apple.developer.parent-application-identifiers</key> <array> - <string>$(PARENT_APP_IDENTIFIER)</string> + <string>$(AppIdentifierPrefix)com.mydomain.parentID</string> </array> i.e add AppIdentifierPrefix + parentID instead of PARENT_APP_IDENTIFIER With this fix, the appClip got build with Xcode 26. My issue with appClip invocation is not yet fully fixed (though now it works on some cases), but hope this will give someone a starting point. Let me know if anyone found a proper solution. I have also opened a feedback and the number is FB20453270
Topic: UI Frameworks SubTopic: General Tags:
Oct ’25
Reply to iOS26 beta: AppClips are not working properly
I have a small update, when upgraded to Xcode 26 (instead of Xcode 16), the appclip did not build right away. The reason was Apple has changed how we need to create the .entitlements files. So I had to do the following: <key>com.apple.developer.parent-application-identifiers</key> <array> - <string>$(PARENT_APP_IDENTIFIER)</string> + <string>$(AppIdentifierPrefix)com.mydomain.parentID</string> </array> i.e add AppIdentifierPrefix + parentID instead of PARENT_APP_IDENTIFIER With this fix, the appClip got build with Xcode 26. My issue with appClip invocation is not yet fully fixed, but hope this will help someone. Let me know if someone found a better solution. Note: I have seen it works in some phones with iOS 26 (like iPhone 14) when I use the appClip code (circular code), but not with plain QR code, and that too not on all phones (still not works on 14 pro max). But once it works on a given phone, it worked on normal QR code too (weird, I know). My best guess is that it' a cache issue.
Topic: App & System Services SubTopic: General Tags:
Oct ’25
Reply to App Clips don't work
We have the same issue. The appclip was working well before, but with iOS 26 we get the error This operation couldn't be completed. (ASDErrorDomain error 507.) . The appclip works when run via the TestFlight, but not when open via an URL. So it seems the error is at the appClip invocation. Any help to fix the issue is appreciated.
Topic: UI Frameworks SubTopic: General Tags:
Sep ’25
Reply to iOS26 beta: AppClips are not working properly
We have the same issue. It was working well with iOS 18, but with iOS 26 we get the error This operation couldn't be completed (ASDErrorDomain- Error 507.) . The appclip works when run via the TestFlight, but not when open via an URL. So it seems the error is at the appClip invocation. Any help to fix the issue is appreciated.
Topic: App & System Services SubTopic: General Tags:
Sep ’25