Associated domain is always <string>*</string>

  1. SDK Version: 39
  2. Platforms(Android/iOS/web/all): iOS

I’m trying to implement Universal Links. I have the apple-app-site-association file working (the validator works), but I’m having problems with the .ipa.

In app.json under expo.ios.associatedDomains I have ["applinks:mydomain.com", "applinks:www.mydomain.com"].

After building with expo build:ios --clear-provisioning-profile, I uploaded to Testflight using transporter, but universal links don’t work.

Upon inspecting the generated .ipa I found that
Running codesign -d --entitlements :- "Payload/ExpoKitApp.app" returns:

	<key>com.apple.developer.associated-domains</key>
	<array>
		<string>applinks:mydomain.com</string>
		<string>applinks:www.mydomain.com</string>
	</array>

However, inspecting “Payload/ExpoKitApp.app/embedded.mobileprovision”, under the Entitlements` tag I find:

		<key>com.apple.developer.associated-domains</key>
		<string>*</string>

I don’t know how to change it, or if it is a problem with the build process. Please help :3

Thanks!!

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.