【发布时间】:2019-09-20 11:31:33
【问题描述】:
通用链接在 iOS 12.1 之前运行良好。它已在 iOS 12.2 中停止工作。我使用 XCode 10.1 swift 4 来调试 12.2 中的代码,将我的 xcode 更新为 10.2 swift 4。
我已经检查了 apple-app-site-association,这很好。应用程序正在完美地下载它。路径,活动延续,细节看起来不错。关联的域存在于权利文件中。 运行 时,此代码可以正常工作/设置
{
"activitycontinuation": {
"apps": [
“teamID.bundleidentifier”
]
},
"applinks": {
"apps": [],
"details": [
{
"appID": “teamID.bundleidentifier”,
"paths": [ "/validate", "/redirect", "NOT /*" ]
}
]
}
}
Apple 已经添加了一些与安全性相关的更改,这是无法正常工作的原因吗?
【问题讨论】:
标签: ios ios12 ios-universal-links