I’ve a Flutter app and the next file ios/Runner/Runner.entitlements
<?xml model="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist model="1.0">
<dict>
<key>aps-environment</key>
<string>growth</string>
<key>com.apple.developer.applesignin</key>
<array>
<string>Default</string>
</array>
<key>com.apple.developer.associated-domains</key>
<array>
<string>applinks:nutmegapp.web page.hyperlink</string>
<string>applinks:internet.nutmegapp.com</string>
</array>
</dict>
</plist>
however for some causes applinks nonetheless do not work.
I learn that the Entitlements get populated within the IPA and I can debug them inspecting the content material of Payload/Runner.app/embedded.mobileprovision
file
On this file I see for instance aps-environment
and different settings however I do not see the applinks
area.
Any thought of why? The place can I confirm that these entitlements are accurately handed to the ultimate artifact?