[AC-6574] iOS: Universal Linking does not work with wildcard on associated-domains
GitHub Issue | n/a |
---|---|
Type | Bug |
Priority | n/a |
Status | Open |
Resolution | Unresolved |
Affected Version/s | n/a |
Fix Version/s | n/a |
Components | Titanium SDK & CLI |
Labels | ios |
Reporter | Luke Lu |
Assignee | Abir Mukherjee |
Created | 2020-07-15T06:25:28.000+0000 |
Updated | 2020-07-15T18:07:45.000+0000 |
Description
Case:
Works
<entitlements>
<dict>
<key>com.apple.developer.associated-domains</key>
<array>
<string>applinks:subdomain.domain.com.au</string>
</array>
</dict>
</entitlements>
But this doesn't work
<entitlements>
<dict>
<key>com.apple.developer.associated-domains</key>
<array>
<string>applinks:*.domain.com.au</string>
</array>
</dict>
</entitlements>
While adding functionality for universal linking in ios, we are getting this weird issue where I cannot add wild card *. for subdomain. It would work fine if I define the subdomain which is not possible as we have lots of subdomains. It is supported by apple but seems some issue on titanium side. Could anyone confirm please, thanks. All the subdomains already has apple-app-site-association so no issue with that
It seems problem with Apple side. See discussion https://developer.apple.com/forums/thread/47315 .