英文:
Unable to launch iPhone Simulator with Titanium app
问题
当尝试在我的Titanium应用程序上运行iPhone模拟器时,出现以下错误:
[ERROR] 未找到WWDR中间证书
从https://www.apple.com/certificateauthority/AppleWWDRCAG2.cer下载并安装证书
即使下载并安装证书到我的钥匙串应用程序中,错误仍然存在。
我发现有人在几个月前提到了这个问题,回应是:“已经将修复推送到SDK本身,所以链接将在下一个版本中修复。”
然而,自从那个回应发布以来,我下载了Titanium SDK 12.1.1.GA,但错误仍然存在。当我查看GitHub以了解修复中包含了什么内容时,只有两个更改源代码的地方,看起来是更改了有关正确URL下载证书的输出消息。没有看到任何内容实际修复了查找正确证书的问题。
https://github.com/tidev/titanium-sdk/pull/13747
是否有任何方法可以解决这个问题?
英文:
When trying to run the iPhone simulator for my Titanium app, I get the following error:
[ERROR] WWDR Intermediate Certificate not found
Download and install the certificate from https://www.apple.com/certificateauthority/AppleWWDRCAG2.cer
Even after downloading and installing the certificate in my keychain app, the error persists.
I found someone else asked about this issue a few months ago, and the response was, "a fix was pushed to the SDK itself so the link will be fixed in the next release."
However, since that response was posted, I downloaded Titanium SDK 12.1.1.GA, and the error persists. When I looked at GitHub to see what was included in the fix, there were only two changes to the source code, which look like changes to output messages about the correct URL to use for downloading the certificate. Nothing looked like it actually fixed the search for the correct certificate.
https://github.com/tidev/titanium-sdk/pull/13747
Is there anything I can do to fix this issue?
答案1
得分: 1
这个证书与钛无关,它是一个苹果证书,你可以尝试从https://www.apple.com/certificateauthority/ 中的其他WWDRC文件之一(右侧选择“Worldwide Developer Relations”,例如选择G3)。
没有任何东西看起来真正修复了查找正确证书的问题。
PR中的修复是我做的,它只是修复了链接到新证书,因为旧链接链接到一个过时的证书。
安装完WWDRC证书后,请确保检查您的钥匙串以确保正确安装。
编辑:
还要确保检查https://stackoverflow.com/a/67334871/5193915。
英文:
The certificate has nothing todo with Titanium, it is a Apple certificate and you can try one of the other WWDRC files from https://www.apple.com/certificateauthority/ (right side: "Worldwide Developer Relations", pick e.g. G3).
> Nothing looked like it actually fixed the search for the correct certificate.
The fix in the PR was done by me and it just fixed the link to the new certificate as the old link links to an outdated one.
Once you've installed the WWDRC certificate make sure to check your keychain to see that is installed correctly.
edit:
also make sure to check https://stackoverflow.com/a/67334871/5193915
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论