我正在尝试将 url_launcher 与 uni_links 结合使用。我可以通过以下方式成功启动我的应用:
xcrun simctl openurl booted https://my.domain.com/somewhere
但是,如果我的应用中有一个带有 onclick 处理程序的按钮:
final url = "https://my.domain.com/somewhere";
final success = await launch(url, forceSafariVC: false, universalLinksOnly: true);
success
是假的,应用没有正确导航
我尝试失败了:
<key>LSApplicationQueriesSchemes</key>
<array>
<string>https</string>
</array>
答案 0 :(得分:0)
此处缺少的链接是更新捆绑 ID 以启用关联域。自从我在本地运行开发以来,我一直认为我不需要那一步,但我错了。