Adding Associated Domains Entitlement For a Flutter App
Asked Answered
P

2

10

I need to add Associated Domains Entitlement to my Flutter app, so I can implement App Links. I use the uni_links plugin which works well for Android. I've added a ios/Runner/Runner.entitlements file as described, but it doesn't work. Apple official docs imply that I need to add something to the app via xcode. Problem is, I don't use xcode, rather Android Studio. I believe I need to manually add an entry to info.plist or project.pbxproj which is what I believe xcode does, however I am not sure what.

Photosphere answered 6/11, 2019 at 19:16 Comment(0)
C
19

Open the Runner.entitlements file from this path :

ios/Runner/Runner.entitlements

And add the applink you want

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
  <!-- ... other keys -->
  <key>com.apple.developer.associated-domains</key>
  <array>
    <string>applinks:[YOUR_HOST]</string>
  </array>
  <!-- ... other keys -->
</dict>
</plist>

For more information, read Apple's guide for Universal Links.

Cusped answered 14/11, 2019 at 12:26 Comment(4)
did that and it doesn't work (on simulator). my question was if i need to do something additional in xcodePhotosphere
In Xcode, go to Capabilites, in that section there is an option to add Associated Domains. First switch it on and then add the link as applinks. Applinks and webcredentials are different: applinks is for universal links webcredentials is for web credential sharing . is this answer your question @PhotosphereCusped
I believe this stuff doesn't work in the Simulator at all and needs testing on a real device. Also, since it hasn't been mentioned explicitly, you also need to create matching settings on your web domain for Apple to scrape.Ferris
@MartinWestin yes ita it doesnt work in simulator plus it is a pre-requisite to have aasa file uploaded on the web domain for Universal link or app links to work.Cusped
H
1

Log in to Apple Developer Account. Check your bundle Id. Edit your App ID. Add Associated Domain Entitlement from there. Update Provisioning profile and Use it in your Flutter project.

Hagio answered 16/11, 2019 at 15:38 Comment(1)
It means you need to select your app Id and Edit Capabilities from there.Hagio

© 2022 - 2024 — McMap. All rights reserved.