由于 XCode,通用链接在 Flutter 中的 iOS 上不起作用
Universal linking not working on iOS in Flutter due to XCode
我有:
我有一个 flutter 应用程序,我正在使用 unilink 插件转发深层链接。
在 Android 上,一切都按预期工作,但在 iOS.
上却没有
这是我的 iOS json:
http://connector.horizonpedia.com/.well-known/apple-app-site-association
这些是我的 XCode.entitlement 设置:
我还在 Info.plist 中检查了我的 URL 参数:
Json 通过了 https://branch.io/resources/aasa-validator/
的测试
除了勾选此框外,我很确定我已正确完成所有操作
问题:
如您所见,目标跑步者复选框未选中,我无法通过单击来勾选它。
有什么解决办法吗?
好的,两件事:
- 确保您的 AASA 文件来自:
https://catalogscanner.horizonpedia.com/.well-known/apple-app-site-association
(注意
https
和 catalogscanner
部分)
- 在您的 AASA 文件中,您当前使用的是:
"paths": [ "\*" ]
,它应该是 "paths": [ "/*" ]
试一试,看看是否有帮助。
我有:
我有一个 flutter 应用程序,我正在使用 unilink 插件转发深层链接。 在 Android 上,一切都按预期工作,但在 iOS.
上却没有这是我的 iOS json:
http://connector.horizonpedia.com/.well-known/apple-app-site-association
这些是我的 XCode.entitlement 设置:
我还在 Info.plist 中检查了我的 URL 参数:
Json 通过了 https://branch.io/resources/aasa-validator/
的测试除了勾选此框外,我很确定我已正确完成所有操作
问题:
如您所见,目标跑步者复选框未选中,我无法通过单击来勾选它。
有什么解决办法吗?
好的,两件事:
- 确保您的 AASA 文件来自:
https://catalogscanner.horizonpedia.com/.well-known/apple-app-site-association
(注意
https
和catalogscanner
部分) - 在您的 AASA 文件中,您当前使用的是:
"paths": [ "\*" ]
,它应该是"paths": [ "/*" ]
试一试,看看是否有帮助。