Firebase dynamic link not opening the app iOS

后端 未结 16 1812
梦谈多话
梦谈多话 2020-12-05 01:53

I have developed & installed an iOS app locally on my device.

And have set custom scheme in the info.plist as mydlink

Set associated domains

相关标签:
16条回答
  • 2020-12-05 02:53

    sometimes we make a mistake in Associated Domains entitlements. There have to be no spaces

    applinks:mydomain.page.link
    
    0 讨论(0)
  • 2020-12-05 02:55

    I make a mistake that not setup Associated Domains for DEBUG, so make sure you setup Associated Domains all both DEBUG & RELEASE

    0 讨论(0)
  • 2020-12-05 02:56

    Make sure you have a Team Id set in the firebase console for you app. (you will then need to download and import the .plist file).

    This fixed the problem for me.

    0 讨论(0)
  • 2020-12-05 02:56

    i had same issue with latest flutter sdk and firebase dynamic links plugin.

    Tried all solutions the only fix was to manually insert com.apple.developer.associated-domains key to ios/Runner/Running.entitlements file

    <key>com.apple.developer.associated-domains</key>
    <array>
      <string>applinks:abc.page.link</string>
    </array>
    
    0 讨论(0)
提交回复
热议问题